publiczna statyczna klasa końcowa GraphDebugInfo.Builder
Protobuf typu tensorflow.GraphDebugInfo
Metody publiczne
GraphDebugInfo.Builder | addAllFiles (wartości Iterable<String>) This stores all the source code file names and can be indexed by the `file_index`. |
GraphDebugInfo.Builder | addFiles (wartość ciągu) This stores all the source code file names and can be indexed by the `file_index`. |
GraphDebugInfo.Builder | addFilesBytes (wartość com.google.protobuf.ByteString) This stores all the source code file names and can be indexed by the `file_index`. |
GraphDebugInfo.Builder | addRepeatedField (pole com.google.protobuf.Descriptors.FieldDescriptor, wartość obiektu) |
Informacje o debugowaniu wykresu | zbudować () |
Informacje o debugowaniu wykresu | |
GraphDebugInfo.Builder | jasne () |
GraphDebugInfo.Builder | clearField (pole com.google.protobuf.Descriptors.FieldDescriptor) |
GraphDebugInfo.Builder | wyczyść pliki () This stores all the source code file names and can be indexed by the `file_index`. |
GraphDebugInfo.Builder | clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof) |
GraphDebugInfo.Builder | wyczyśćŚlady () |
GraphDebugInfo.Builder | klon () |
wartość logiczna | zawieraTraces (klucz ciąg) This maps a node name to a stack trace in the source code. |
Informacje o debugowaniu wykresu | |
końcowy statyczny com.google.protobuf.Descriptors.Descriptor | |
com.google.protobuf.Descriptors.Descriptor | |
Smyczkowy | getFiles (indeks int) This stores all the source code file names and can be indexed by the `file_index`. |
com.google.protobuf.ByteString | getFilesBytes (indeks int) This stores all the source code file names and can be indexed by the `file_index`. |
wew | getFilesCount () This stores all the source code file names and can be indexed by the `file_index`. |
com.google.protobuf.ProtocolStringList | getFilesList () This stores all the source code file names and can be indexed by the `file_index`. |
Mapa<String, GraphDebugInfo.StackTrace > | getMutableTraces () Zamiast tego użyj alternatywnych akcesorów mutacji. |
Mapa<String, GraphDebugInfo.StackTrace > | pobierzTraces () Zamiast tego użyj funkcji getTracesMap() . |
wew | getTracesCount () This maps a node name to a stack trace in the source code. |
Mapa<String, GraphDebugInfo.StackTrace > | getTracesMap () This maps a node name to a stack trace in the source code. |
GraphDebugInfo.StackTrace | getTracesOrDefault (klucz ciągu, GraphDebugInfo.StackTrace wartość domyślna) This maps a node name to a stack trace in the source code. |
GraphDebugInfo.StackTrace | getTracesOrThrow (klawisz ciągu) This maps a node name to a stack trace in the source code. |
końcowa wartość logiczna | |
GraphDebugInfo.Builder | mergeFrom (wejście com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite ExtensionRegistry) |
GraphDebugInfo.Builder | mergeFrom (com.google.protobuf.Wiadomość inna) |
końcowy GraphDebugInfo.Builder | mergeUnknownFields (com.google.protobuf.UnknownFieldUstaw nieznane pola) |
GraphDebugInfo.Builder | putAllTraces (Map<String, GraphDebugInfo.StackTrace > wartości) This maps a node name to a stack trace in the source code. |
GraphDebugInfo.Builder | putTraces (klucz ciągu, wartość GraphDebugInfo.StackTrace ) This maps a node name to a stack trace in the source code. |
GraphDebugInfo.Builder | usuńTraces (klawisz ciągu) This maps a node name to a stack trace in the source code. |
GraphDebugInfo.Builder | setField (pole com.google.protobuf.Descriptors.FieldDescriptor, wartość obiektu) |
GraphDebugInfo.Builder | setFiles (indeks int, wartość ciągu) This stores all the source code file names and can be indexed by the `file_index`. |
GraphDebugInfo.Builder | setRepeatedField (pole com.google.protobuf.Descriptors.FieldDescriptor, indeks int, wartość obiektu) |
końcowy GraphDebugInfo.Builder | setUnknownFields (com.google.protobuf.UnknownFieldUstaw nieznane pola) |
Metody dziedziczone
Metody publiczne
public GraphDebugInfo.Builder addAllFiles (wartości Iterable<String>)
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
public GraphDebugInfo.Builder addFiles (wartość ciągu)
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
public GraphDebugInfo.Builder addFilesBytes (wartość com.google.protobuf.ByteString)
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
public GraphDebugInfo.Builder addRepeatedField (pole com.google.protobuf.Descriptors.FieldDescriptor, wartość obiektu)
public GraphDebugInfo.Builder clearFiles ()
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
publiczna wartość logiczna zawieraTraces (klucz ciąg)
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor ()
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType ()
public String getFiles (indeks int)
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
public com.google.protobuf.ByteString getFilesBytes (indeks int)
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
publiczny int getFilesCount ()
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
public com.google.protobuf.ProtocolStringList getFilesList ()
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;
public Map<String, GraphDebugInfo.StackTrace > getMutableTraces ()
Zamiast tego użyj alternatywnych akcesorów mutacji.
public Map<String, GraphDebugInfo.StackTrace > getTraces ()
Zamiast tego użyj funkcji getTracesMap()
.
publiczny int getTracesCount ()
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
public Map<String, GraphDebugInfo.StackTrace > getTracesMap ()
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
publiczny GraphDebugInfo.StackTrace getTracesOrDefault (klucz ciąg, GraphDebugInfo.StackTrace wartość domyślna)
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
public GraphDebugInfo.StackTrace getTracesOrThrow (klucz ciąg)
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
publiczna końcowa wartość logiczna isInitialized ()
public GraphDebugInfo.Builder mergeFrom (wejście com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite rozszerzenieRegistry)
Rzuca
Wyjątek IO |
---|
publiczna wersja końcowa GraphDebugInfo.Builder mergeUnknownFields (com.google.protobuf.UnknownFieldSetknownFields)
public GraphDebugInfo.Builder putAllTraces (Map<String, GraphDebugInfo.StackTrace > wartości)
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
public GraphDebugInfo.Builder putTraces (klucz ciągu, wartość GraphDebugInfo.StackTrace )
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
public GraphDebugInfo.Builder usuńTraces (klucz ciąg)
This maps a node name to a stack trace in the source code. The map key is a mangling of the containing function and op name with syntax: op.name '@' func_name For ops in the top-level graph, the func_name is the empty string. Note that op names are restricted to a small number of characters which exclude '@', making it impossible to collide keys of this form. Function names accept a much wider set of characters. It would be preferable to avoid mangling and use a tuple key of (op.name, func_name), but this is not supported with protocol buffers.
map<string, .tensorflow.GraphDebugInfo.StackTrace> traces = 2;
public GraphDebugInfo.Builder setField (pole com.google.protobuf.Descriptors.FieldDescriptor, wartość obiektu)
public GraphDebugInfo.Builder setFiles (indeks int, wartość ciągu)
This stores all the source code file names and can be indexed by the `file_index`.
repeated string files = 1;