Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for node_ (0.04 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/node.k8s.io.v1alpha1.RuntimeClass.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 544 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/node.k8s.io.v1alpha1.RuntimeClass.yaml

    apiVersion: node.k8s.io/v1alpha1
    kind: RuntimeClass
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/node.k8s.io.v1beta1.RuntimeClass.json

    {
      "kind": "RuntimeClass",
      "apiVersion": "node.k8s.io/v1beta1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/node.k8s.io.v1beta1.RuntimeClass.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 533 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/node.k8s.io.v1beta1.RuntimeClass.yaml

    apiVersion: node.k8s.io/v1beta1
    handler: handlerValue
    kind: RuntimeClass
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/node.k8s.io.v1alpha1.RuntimeClass.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 544 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/node.k8s.io.v1beta1.RuntimeClass.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 533 bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    //
    // 1. Add a XLA computation key placeholder node (it will be used as input for
    //    XlaRecvAtHost and XlaSendFromHost);
    // 2. Replace all _Arg nodes with one single XlaRecvAtHost node;
    // 3. Replace all _Retval nodes with one single XlaSendFromHost node;
    // 4. Mark all nodes except key placeholder with attr `xla_cluster_attr_name`
    //    and `outside_compilation_attr_name`;
    // 5. For nodes marked with attr kXlaConnectedToXlaComputationAttrName, add a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

        if (IsInPlaceOp(n->type_string())) {
          return absl::OkStatus();
        }
        nodes.push_back(n);
      }
    
      // Iterate over a copy of the nodes to avoid iterating over g->nodes() while
      // creating more nodes.
      for (Node* n : nodes) {
        TF_RETURN_IF_ERROR(CloneSmallConstantInputs(name_set, n));
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. samples/kind-lb/setupkind.sh

      NUMNODES=${NUMNODES:-2}
    fi
    
    NODES=$(cat <<-EOM
    nodes:
    - role: control-plane
    EOM
    )
    
    if [[ -n "${NUMNODES}" ]]; then
    for _ in $(seq 1 "${NUMNODES}"); do
      NODES+=$(printf "\n%s" "- role: worker")
    done
    fi
    
    CONFIG=$(cat <<-EOM
    kind: Cluster
    apiVersion: kind.x-k8s.io/v1alpha4
    ${FEATURES}
    name: ${CLUSTERNAME}
    ${NODES}
    networking:
      ipFamily: ${IPFAMILY}
    EOM
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top