Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for node_idx (0.13 sec)

  1. cluster/log-dump/log-dump.sh

      for i in "${!all_selected_nodes[@]}"; do
        node_name="${all_selected_nodes[$i]}"
        node_dir="${report_dir}/${node_name}"
        mkdir -p "${node_dir}"
        if [[ "${i}" -lt "${#linux_nodes_selected_for_logs[@]}" ]]; then
          # Save logs in the background. This speeds up things when there are
          # many nodes.
          save-logs "${node_name}" "${node_dir}" "${node_logfiles_all}" "${node_systemd_services}" &
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    			expected: "1s",
    		},
    		{
    			testName: "cluster",
    			key:      "cluster",
    			option:   option.Cluster("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "nodeID",
    			key:      "nodeID",
    			option:   option.NodeID("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "region",
    			key:      "region",
    			option:   option.Region("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "zone",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients.cc

          if (e->IsControlEdge() || !reachable_nodes[e->dst()->id()]) continue;
    
          auto const& pair = visited.insert(e->dst());
          if (pair.second) {
            int node_id = e->dst()->id();
            Node* last_output_node = p.second;
            if (output_nodes.find(node_id) != output_nodes.end()) {
              // We reached an output node.
              if (last_output_node != nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        private boolean removingOutgoingEdges;
        private boolean findingExternalVariants;
    
        public NodeState(long nodeId, ComponentState component, ResolveState resolveState, VariantGraphResolveState variant, boolean selectedByVariantAwareResolution) {
            this.nodeId = nodeId;
            this.component = component;
            this.resolveState = resolveState;
            this.variantState = variant;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_linux_test.go

    			expectedMode:        proxyconfigapi.ProxyModeIPTables,
    			detectLocal:         "NodeCIDR",
    			expectedDetectLocal: proxyconfigapi.LocalModeNodeCIDR,
    		},
    		{
    			name:                "override both",
    			mode:                "ipvs",
    			expectedMode:        proxyconfigapi.ProxyModeIPVS,
    			detectLocal:         "NodeCIDR",
    			expectedDetectLocal: proxyconfigapi.LocalModeNodeCIDR,
    		},
    	}
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. cmd/event-notification.go

    		uniqueID = fmt.Sprintf("%X", args.Object.ModTime.UnixNano())
    	}
    
    	respElements := map[string]string{
    		"x-amz-request-id": args.RespElements["requestId"],
    		"x-amz-id-2":       args.RespElements["nodeId"],
    		"x-minio-origin-endpoint": func() string {
    			if globalMinioEndpoint != "" {
    				return globalMinioEndpoint
    			}
    			return getAPIEndpoints()[0]
    		}(), // MinIO specific custom elements.
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/context.go

    // function and the metadata.
    func ParseServiceNodeWithMetadata(nodeID string, metadata *NodeMetadata) (*Proxy, error) {
    	parts := strings.Split(nodeID, serviceNodeSeparator)
    	out := &Proxy{
    		Metadata: metadata,
    	}
    
    	if len(parts) != 4 {
    		return out, fmt.Errorf("missing parts in the service node %q", nodeID)
    	}
    
    	if !pm.IsApplicationNodeType(NodeType(parts[0])) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  8. staging/src/k8s.io/api/storage/v1/types.go

    	// refer to the node name using the ID that the storage system will
    	// understand, e.g. "nodeA" instead of "node1". This field is required.
    	NodeID string `json:"nodeID" protobuf:"bytes,2,opt,name=nodeID"`
    
    	// topologyKeys is the list of keys supported by the driver.
    	// When a driver is initialized on a cluster, it provides a set of topology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		ip = "127.0.0.1"
    	}
    	if namespace == "" {
    		namespace = "default"
    	}
    	if app == "" {
    		app = "app"
    	}
    	nodeID := "sidecar~" + ip + "~" + app + "." + namespace + "~" + namespace + ".svc.cluster.local"
    	bootstrap, err := grpcxds.GenerateBootstrap(grpcxds.GenerateBootstrapOptions{
    		Node: &model.Node{
    			ID: nodeID,
    			Metadata: &model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    					Namespace: namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. tools/packaging/common/envoy_bootstrap.json

            "caller": "%g:%#",
            "thread": "%t"
          }
    {{- else }}
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
    {{- end }}
        }
      },
      "node": {
        "id": "{{ .nodeID }}",
        "cluster": "{{ .cluster }}",
        "locality": {
          {{- if .region }}
          "region": "{{ .region }}"
          {{- end }}
          {{- if .zone }}
          {{- if .region }}
          ,
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top