Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for Nodes (0.23 sec)

  1. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                  }
                ],
                "description": "scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes."
              }
            },
            "required": [
              "handler"
            ],
            "type": "object",
            "x-kubernetes-group-version-kind": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    to the service account annotations: {} ### Advanced options ########## env: {} nodeSelector: {} tolerations: [] # Specify the pod anti-affinity that allows you to constrain which nodes # your pod is eligible to be scheduled based on labels on pods that are # already running on the node rather than based on labels on nodes. # There are currently two types of anti-affinity: # "requiredDuringSchedu" # "preferredDuringSched" # which denote "hard" vs. "soft" requirements, you can define your values # in...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

      - authentication.istio.io
      - rbac.istio.io
      resources:
      - '*'
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - ""
      resources:
      - endpoints
      - pods
      - services
      - nodes
      - replicationcontrollers
      - namespaces
      - secrets
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - networking.istio.io
      resources:
      - workloadentries
      verbs:
      - get
      - watch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		// Fetch current node object
    		node, fetchErr := og.kubeClient.CoreV1().Nodes().Get(context.TODO(), string(nodeName), metav1.GetOptions{})
    		if fetchErr != nil {
    			// On failure, return error. Caller will log and retry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    -----END CERTIFICATE-----`
    
    // openssl req -newkey rsa:2048 -keyout test.key -sha256 -sigopt \
    // rsa_padding_mode:pss -sigopt rsa_pss_saltlen:32 -sigopt rsa_mgf1_md:sha256 \
    // -x509 -days 3650 -nodes -subj '/C=US/ST=CA/L=SF/O=Test/CN=Test' -out \
    // test.pem
    var rsaPSSSelfSignedOpenSSL110PEM = `-----BEGIN CERTIFICATE-----
    MIIDwDCCAnigAwIBAgIJAM9LAMHTE5xpMD0GCSqGSIb3DQEBCjAwoA0wCwYJYIZI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    			defer testKubelet.Cleanup()
    			kl := testKubelet.kubelet
    
    			kl.nodeLister = testNodeLister{nodes: []*v1.Node{
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: string(kl.nodeName)},
    					Status: v1.NodeStatus{
    						Addresses: tc.nodeAddresses,
    					},
    				},
    			}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Lifts tf_executor.island inner ops from a tf_executor.graph";
    
      let description = [{
        This pass converts tf_executor.graphs consisting of only tf_executor.islands and
        a tf_executor.fetch into a sea of nodes consisting of TensorFlow Dialect ops by
        lifting such ops out of a tf_executor.graph's tf_executor.islands. If V1 control
        flow ops are present in a tf_executor.graph, an error will be returned.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    			devices = append(devices, kubecontainer.DeviceInfo{PathOnHost: symlinkPath, PathInContainer: device.DevicePath, Permissions: permission})
    		}
    	}
    
    	return devices, nil
    }
    
    // shouldMountHostsFile checks if the nodes /etc/hosts should be mounted
    // Kubernetes only mounts on /etc/hosts if:
    // - container is not an infrastructure (pause) container
    // - container is not already mounting on /etc/hosts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/side_effect_analysis_util.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    // Returns the equivalent Value skipping through identity nodes.
    Value LookThroughIdentity(Value result) {
      while (isa_and_nonnull<IdentityOp, IdentityNOp>(result.getDefiningOp())) {
        auto op_result = result.cast<OpResult>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        Region* region, int64_t max_iterations) {
      bool changed = true;
    
      // TODO(aminim): we could have a more efficient traversal by guiding the
      // traversal with a worklist and reconsider only the nodes for which an
      // operand type was inferred. This would need to be careful if working on a
      // region that would not be isolated.
      for (int iteration = 0; iteration < max_iterations && changed; ++iteration) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top