Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for Concatenates (0.2 sec)

  1. src/cmd/link/internal/loader/loader.go

    // for 's'. Carrier symbols are used in the linker to as a container
    // for a collection of sub-symbols where the content of the
    // sub-symbols is effectively concatenated to form the content of the
    // carrier. The carrier is given a name in the output symbol table
    // while the sub-symbol names are not. For example, the Go compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        return 1
      fi
    
      local out=""
      for (( i = 0; i < "${infobytes}"; i += 32 )); do
        # uuids have 122 random bits, sha256 sums have 256 bits, so concatenate
        # three uuids and take their sum. The sum is encoded in ASCII hex, hence the
        # 64 character cut.
        out+="$(
         (
           uuidgen --random;
           uuidgen --random;
           uuidgen --random;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           return %[[VAL_3]] : tensor<6x3xf32>
    // CHECK:         }
    func.func @concat_v2(%arg0: tensor<3x3xf32>, %arg1: tensor<3x3xf32>) -> tensor<6x3xf32> {
      %2 = "mhlo.concatenate"(%arg0, %arg1) <{dimension = 0 : i64}> : (tensor<3x3xf32>, tensor<3x3xf32>) -> tensor<6x3xf32>
      func.return %2 : tensor<6x3xf32>
    }
    
    // CHECK-LABEL:   func @concat_v2_1d_axis(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// 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).
    	//
    	// An existing PVC with that name that is not owned by the pod
    	// will *not* be used for the pod to avoid using an unrelated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.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 May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    r  = float64(x*y) + z
    r  = z; r += float64(x*y)
    t  = float64(x*y); r = t + z
    </pre>
    
    <h4 id="String_concatenation">String concatenation</h4>
    
    <p>
    Strings can be concatenated using the <code>+</code> operator
    or the <code>+=</code> assignment operator:
    </p>
    
    <pre>
    s := "hi" + string(c)
    s += " and good bye"
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		if c.Name == containerName {
    			hasContainer = true
    			return false
    		}
    		return true
    	})
    	return hasContainer
    }
    
    const (
    	// a sysctl segment regex, concatenated with dots to form a sysctl name
    	SysctlSegmentFmt string = "[a-z0-9]([-_a-z0-9]*[a-z0-9])?"
    
    	// a sysctl name regex with slash allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top