Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Concatenates (0.3 sec)

  1. pkg/kubelet/kubelet.go

    	klet.evictionManager = evictionManager
    	klet.admitHandlers.AddPodAdmitHandler(evictionAdmitHandler)
    
    	// Safe, allowed sysctls can always be used as unsafe sysctls in the spec.
    	// Hence, we concatenate those two lists.
    	safeAndUnsafeSysctls := append(sysctl.SafeSysctlAllowlist(), allowedUnsafeSysctls...)
    	sysctlsAllowlist, err := sysctl.NewAllowlist(safeAndUnsafeSysctls)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, ctxt.datap, addr, size, zeros[:])
    }
    
    func dwarfblk(ctxt *Link, out *OutBuf, addr int64, size int64) {
    	// Concatenate the section symbol lists into a single list to pass
    	// to writeBlocks.
    	//
    	// NB: ideally we would do a separate writeBlocks call for each
    	// section, but this would run the risk of undoing any file offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      flags+=" ${NODE_KUBELET_TEST_ARGS:-}"
    
      local node_labels
      node_labels="$(build-windows-node-labels)"
      if [[ -n "${node_labels:-}" ]]; then
        flags+=" --node-labels=${node_labels}"
      fi
    
      # Concatenate common and windows-only node taints and apply them.
      local node_taints="${NODE_TAINTS:-}"
      if [[ -n "${node_taints}" && -n "${WINDOWS_NODE_TAINTS:-}" ]]; then
        node_taints+=":${WINDOWS_NODE_TAINTS}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. RELEASE.md

    *   Add a `tf.distribute.cluster_resolver.TPUClusterResolver.connect` API to
        simplify TPU initialization.
    *   Add `tf.distribute.Strategy.gather` and
        `tf.distribute.ReplicaContext.all_gather` methods to gather and concatenate
        `tf.distribute.DistributedValues` across workers and devices.
    
    ### `tf.keras`:
    
    *   Introduces experimental preprocessing layers API
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

    the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

    the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top