Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 153 for node_idx (0.15 sec)

  1. staging/src/k8s.io/api/storage/v1/generated.proto

      // name represents the name of the CSI driver that this object refers to.
      // This MUST be the same name returned by the CSI GetPluginName() call for
      // that driver.
      optional string name = 1;
    
      // nodeID of the node from the driver point of view.
      // This field enables Kubernetes to communicate with storage systems that do
      // not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // name represents the name of the CSI driver that this object refers to.
      // This MUST be the same name returned by the CSI GetPluginName() call for
      // that driver.
      optional string name = 1;
    
      // nodeID of the node from the driver point of view.
      // This field enables Kubernetes to communicate with storage systems that do
      // not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/types.go

    type LocalMode string
    
    // Currently supported modes for LocalMode
    const (
    	LocalModeClusterCIDR         LocalMode = "ClusterCIDR"
    	LocalModeNodeCIDR            LocalMode = "NodeCIDR"
    	LocalModeBridgeInterface     LocalMode = "BridgeInterface"
    	LocalModeInterfaceNamePrefix LocalMode = "InterfaceNamePrefix"
    )
    
    func (m *LocalMode) Set(s string) error {
    	*m = LocalMode(s)
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_test.cc

    TEST(CAPI, MessageBufferConversion) {
      NodeDef node_in, node_out;
      node_in.set_name("Test name");
      node_in.set_op("Test op");
    
      TF_Buffer* buffer = TF_NewBuffer();
      TF_CHECK_OK(MessageToBuffer(node_in, buffer));
      TF_CHECK_OK(BufferToMessage(buffer, &node_out));
      TF_DeleteBuffer(buffer);
    
      protobuf::util::MessageDifferencer differencer;
      EXPECT_TRUE(differencer.Compare(node_in, node_out));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"name":         "name represents the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/storage/v1/generated.proto

      // name represents the name of the CSI driver that this object refers to.
      // This MUST be the same name returned by the CSI GetPluginName() call for
      // that driver.
      optional string name = 1;
    
      // nodeID of the node from the driver point of view.
      // This field enables Kubernetes to communicate with storage systems that do
      // not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // name represents the name of the CSI driver that this object refers to.
      // This MUST be the same name returned by the CSI GetPluginName() call for
      // that driver.
      optional string name = 1;
    
      // nodeID of the node from the driver point of view.
      // This field enables Kubernetes to communicate with storage systems that do
      // not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    			copy(dAtA[i:], m.TopologyKeys[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.TopologyKeys[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	i -= len(m.NodeID)
    	copy(dAtA[i:], m.NodeID)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.NodeID)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0xa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_linux.go

    			localDetectors[family] = proxyutil.NewDetectLocalByCIDR(cidrs[0].String())
    		}
    		if !localDetectors[primaryIPFamily].IsImplemented() {
    			logger.Info("Detect-local-mode set to NodeCIDR, but no PodCIDR defined at node for primary IP family", "ipFamily", primaryIPFamily, "podCIDRs", nodePodCIDRs)
    		}
    
    	case proxyconfigapi.LocalModeBridgeInterface:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. pkg/apis/storage/types.go

    type CSINodeDriver struct {
    	// This is the name of the CSI driver that this object refers to.
    	// This MUST be the same name returned by the CSI GetPluginName() call for
    	// that driver.
    	Name string
    
    	// nodeID of the node from the driver point of view.
    	// This field enables Kubernetes to communicate with storage systems that do
    	// not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top