Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 272 for Sizes (0.05 sec)

  1. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	// ServiceCIDR is primary service cidr for cluster.
    	ServiceCIDR *net.IPNet
    	// SecondaryServiceCIDR is secondary service cidr for cluster.
    	SecondaryServiceCIDR *net.IPNet
    	// NodeCIDRMaskSizes is list of node cidr mask sizes.
    	NodeCIDRMaskSizes []int
    }
    
    // New creates a new CIDR range allocator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    				// report parse errors.
    				err = nil
    			}
    			return nil, err
    		}
    		files = append(files, f)
    	}
    	tc := &types.Config{
    		Importer:  makeTypesImporter(cfg, fset),
    		Sizes:     types.SizesFor("gc", build.Default.GOARCH), // TODO(adonovan): use cfg.Compiler
    		GoVersion: cfg.GoVersion,
    	}
    	info := &types.Info{
    		Types:      make(map[ast.Expr]types.TypeAndValue),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

            this.delegate = requireNonNull(delegate);
            if (queueSize < 1 || batchMaxSize < 1) {
                throw new IllegalArgumentException("Queue and batch sizes must be greater than 1");
            }
            this.batchMaxSize = batchMaxSize;
            this.blockOnLastEvent = blockOnLastEvent;
    
            this.eventQueue = new ArrayBlockingQueue<>(queueSize);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

    // allowed to have one mismatching dimension. Masking one of the dimensions is
    // useful for ops like Concat that requires all ranked inputs to have the same
    // rank and match dimension sizes for all but one of the dimensions.
    LogicalResult VerifyTypesCompatibility(Operation::operand_type_range types,
                                           bool mask_one_dim, Operation *op) {
      int64_t common_rank = ShapedType::kDynamic;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/build-goboring.sh

    	sub(/,$/, "", val)
    	print "check_value(" name ", " val ")" > "goboringcrypto.x"
    	next
    }
    enum {
    	print FILENAME ":" NR ": unexpected line in enum: " $0 > "/dev/stderr"
    	exitcode = 1
    	next
    }
    
    # Check struct sizes.
    /^typedef struct / && $NF ~ /^GO_/ {
    	name = $NF
    	sub(/^GO_/, "", name)
    	sub(/;$/, "", name)
    	print "check_size(" name ")" > "goboringcrypto.x"
    	next
    }
    
    # Check function prototypes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    	exactSize := func(size int) checker.SizeEstimate {
    		return checker.SizeEstimate{Min: uint64(size), Max: uint64(size)}
    	}
    	exactSizes := func(sizes ...int) []checker.SizeEstimate {
    		results := make([]checker.SizeEstimate, len(sizes))
    		for i, size := range sizes {
    			results[i] = exactSize(size)
    		}
    		return results
    	}
    	cases := []struct {
    		name       string
    		function   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/crypto/aes/asm_ppc64x.s

    	VCIPHER		V0, V1, V1
    	VCIPHERLAST	V1, V2, V2
    
    	// Store the result in BE order.
    	P8_STXVB16X(V2, R3, R0)
    	RET
    
    Linvalid_key_len:
    	// Segfault, this should never happen. Only 3 keys sizes are created/used.
    	MOVD	R0, 0(R0)
    	RET
    
    // func decryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    TEXT ·decryptBlockAsm(SB), NOSPLIT|NOFRAME, $0
    	MOVD	nr+0(FP), R6   // Round count/Key size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %sizes = "tf.Const"() {value = dense<[1, 4]> : tensor<2xi64>} : () -> (tensor<2xi64>)
      %0 = "tf.Slice"(%arg0, %arg1, %sizes) : (tensor<3x4xi32>, tensor<2xi64>, tensor<2xi64>) -> tensor<1x4xi32>
      func.return %0 : tensor<1x4xi32>
    }
    
    // -----
    
    func.func @testSlice_begin_2d(%arg0: tensor<4xi32>, %begins: tensor<2x2xi64>) -> tensor<3xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. src/crypto/cipher/gcm.go

    	return newGCMWithNonceAndTagSize(cipher, size, gcmTagSize)
    }
    
    // NewGCMWithTagSize returns the given 128-bit, block cipher wrapped in Galois
    // Counter Mode, which generates tags with the given length.
    //
    // Tag sizes between 12 and 16 bytes are allowed.
    //
    // Only use this function if you require compatibility with an existing
    // cryptosystem that uses non-standard tag lengths. All other users should use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Converts tensor list operations into operations on buffers and sizes. Needs
    // static shapes and known max element count.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTensorListOpsDecompositionPass();
    
    // Converts tensor array ops into operations on local variables, which can later
    // be removed by resource lifting. Requires known sizes and known element shapes
    // (either defined in TensorArrayV3 or implied in the first write).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top