Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,371 for Allocate (0.17 sec)

  1. cluster/addons/calico-policy-controller/ippool-crd.yaml

                      containers in this pool to destinations outside of this pool will
                      be masqueraded.
                    type: boolean
                  nodeSelector:
                    description: Allows IPPool to allocate for a specific node by label
                      selector.
                    type: string
                  vxlanMode:
                    description: Contains configuration for VXLAN tunneling for this pool.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_tensor.cc

        uint64 size =
            client->backend().transfer_manager()->GetByteSizeRequirement(subshape);
        TF_ASSIGN_OR_RETURN(se::OwningDeviceMemory buffer,
                            client->backend().memory_allocator()->Allocate(
                                device_ordinal, size, /*retry_on_failure=*/false,
                                subshape.layout().memory_space()));
        // Move our buffer into shaped_buffer, which takes ownership of it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/stackswitch.c

    	stackSwitchCallback();
    
    	// Next, verify that switching stacks doesn't break callbacks.
    
    	char *stack1 = malloc(STACK_SIZE);
    	if (stack1 == NULL) {
    		perror("malloc");
    		exit(1);
    	}
    
    	// Allocate the second stack before freeing the first to ensure we don't get
    	// the same address from malloc.
    	//
    	// Will be freed in stackSwitchThread2.
    	stack2 = malloc(STACK_SIZE);
    	if (stack1 == NULL) {
    		perror("malloc");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      // result without creating new entry in the state vector. Otherwise, allocate
      // a new entry in the state vector.
      void InitializeArgState(BlockArgument arg, Value arg_value);
    
      // Sets the state of the index-th operand of the op. If this operand is
      // cached, uses the cached result without creating new entry in the state
      // vector. Otherwise, allocate a new entry in the state vector.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller.go

    // IPs allocated to a service entry may differ from istiod to istiod
    // but it does not matter because these IPs only affect the listener
    // IPs on a given proxy managed by a given istiod.
    //
    // NOTE: If DNS capture is not enabled by the proxy, the automatically
    // allocated IP addresses do not take effect.
    //
    // The current algorithm to allocate IPs is deterministic across all istiods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    					driverName, allocation, err := controller.allocate(tCtx, nodeName, tc.resources)
    					if err != nil {
    						if expect.allocateErr == "" {
    							tCtx.Fatalf("unexpected allocate error: %v", err)
    						}
    						require.Equal(tCtx, expect.allocateErr, err.Error())
    						return
    					}
    					if expect.allocateErr != "" {
    						tCtx.Fatalf("did not get expected allocate error: %v", expect.allocateErr)
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/AbstractByteHasher.java

     *
     * @author Colin Decker
     */
    @ElementTypesAreNonnullByDefault
    abstract class AbstractByteHasher extends AbstractHasher {
      private final ByteBuffer scratch = ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN);
    
      /** Updates this hasher with the given byte. */
      protected abstract void update(byte b);
    
      /** Updates this hasher with the given bytes. */
      protected void update(byte[] b) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/builtin.go

    	// var h *hmap
    	var h ir.Node
    	if n.Esc() == ir.EscNone {
    		// Allocate hmap on stack.
    
    		// var hv hmap
    		// h = &hv
    		h = stackTempAddr(init, hmapType)
    
    		// Allocate one bucket pointed to by hmap.buckets on stack if hint
    		// is not larger than BUCKETSIZE. In case hint is larger than
    		// BUCKETSIZE runtime.makemap will allocate the buckets on the heap.
    		// Maximum key and elem size is 128 bytes, larger objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. pkg/fieldpath/fieldpath.go

    	keys := make([]string, 0, len(m))
    	var grow int
    	for k, v := range m {
    		keys = append(keys, k)
    		// why add 4: (for =, \n, " and ")
    		grow += len(k) + len(v) + 4
    	}
    	sort.Strings(keys)
    	// allocate space to avoid expansion
    	dst := make([]byte, 0, grow)
    	for _, key := range keys {
    		if len(dst) > 0 {
    			dst = append(dst, '\n')
    		}
    		dst = append(dst, key...)
    		dst = append(dst, '=')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/doc.go

    //
    // # Guidance
    //
    // If you aren't sure what function you need, use SHAKE256 with at least 64
    // bytes of output. The SHAKE instances are faster than the SHA3 instances;
    // the latter have to allocate memory to conform to the hash.Hash interface.
    //
    // If you need a secret-key MAC (message authentication code), prepend the
    // secret key to the input, hash with SHAKE256 and read at least 32 bytes of
    // output.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top