Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for Sizes (0.05 sec)

  1. okhttp/src/test/java/okhttp3/internal/http/CancelTest.kt

          platform.assumeHttp2Support()
        }
    
        // Sockets on some platforms can have large buffers that mean writes do not block when
        // required. These socket factories explicitly set the buffer sizes on sockets created.
        server = MockWebServer()
        server.serverSocketFactory =
          object : DelegatingServerSocketFactory(ServerSocketFactory.getDefault()) {
            @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/crypto/tls/conn_test.go

    	go func() {
    		// This goroutine performs a TLS handshake over clientConn and
    		// then reads TLS records until EOF. It writes a slice that
    		// contains all the record sizes to recordSizesChan.
    		defer close(recordSizesChan)
    		defer clientConn.Close()
    
    		tlsConn := Client(clientConn, config)
    		if err := tlsConn.Handshake(); err != nil {
    			t.Errorf("Error from client handshake: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. test/codegen/slices.go

    	// ppc64x:-`.*runtime\.makeslice`
    	// ppc64x:-`.*runtime\.panicmakeslicelen`
    	return append(s, make([]int, uint(1<<2))...)
    }
    
    // On ppc64x continue to use memclrNoHeapPointers
    // for sizes >= 512.
    func SliceExtensionConst512(s []int) []int {
    	// amd64:-`.*runtime\.memclrNoHeapPointers`
    	// ppc64x:`.*runtime\.memclrNoHeapPointers`
    	return append(s, make([]int, 1<<9)...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 18:57:27 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

                    trySplit.estimateSize(), originalSize));
          }
        }
        if (subsized) {
          if (trySplit != null) {
            assertEquals(
                "sum of estimated sizes of trySplit and original spliterator after trySplit",
                originalSize,
                trySplit.estimateSize() + spliterator.estimateSize());
          } else {
            assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/controller/deployment/sync_test.go

    			if err := dc.scale(ctx, test.deployment, test.newRS, test.oldRSs); err != nil {
    				t.Errorf("%s: unexpected error: %v", test.name, err)
    				return
    			}
    
    			// Construct the nameToSize map that will hold all the sizes we got our of tests
    			// Skip updating the map if the replica set wasn't updated since there will be
    			// no update action for it.
    			nameToSize := make(map[string]int32)
    			if test.newRS != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

    // known (fixed).
    struct SizeInfo {
      Value size;
      bool fixed;
    };
    
    // Modifies a function's signature to rewrite tensor list arguments to buffers
    // and sizes.
    void ModifyFunctionSignature(
        func::FuncOp func, Type size_type,
        llvm::SmallDenseMap<Value, SizeInfo>* buffer_to_size,
        llvm::function_ref<std::optional<Type>(int64_t)> arg_to_buffer_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

            tf_op->hasTrait<mlir::OpTrait::AttrSizedResultSegments>()) {
          // The op has multiple variadic operands or results.
          // Calculate operand and result segment sizes using the OpDef.
          tensorflow::NameRangeMap input_ranges, output_ranges;
          // This will fail only if the OpDef is syntactically invalid.
          if (!NameRangesForNode(node_def, *op_def, &input_ranges, &output_ranges)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/core.go

    	return cidrs, dualstack, nil
    }
    
    // setNodeCIDRMaskSizes returns the IPv4 and IPv6 node cidr mask sizes to the value provided
    // for --node-cidr-mask-size-ipv4 and --node-cidr-mask-size-ipv6 respectively. If value not provided,
    // then it will return default IPv4 and IPv6 cidr mask sizes.
    func setNodeCIDRMaskSizes(cfg nodeipamconfig.NodeIPAMControllerConfiguration, clusterCIDRs []*net.IPNet) ([]int, error) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. src/compress/flate/huffman_bit_writer.go

    	0x0000c0, 0x000100, 0x000180, 0x000200, 0x000300,
    	0x000400, 0x000600, 0x000800, 0x000c00, 0x001000,
    	0x001800, 0x002000, 0x003000, 0x004000, 0x006000,
    }
    
    // The odd order in which the codegen code sizes are written.
    var codegenOrder = []uint32{16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}
    
    type huffmanBitWriter struct {
    	// writer is the underlying writer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    //
    // • Each file's uncompressed size must match its declared 64-bit uncompressed
    // size in the zip file header.
    //
    // • If the zip contains files named "<module>@<version>/go.mod" or
    // "<module>@<version>/LICENSE", their sizes in bytes may be at most
    // [MaxGoMod] or [MaxLICENSE], respectively (both are 16 MiB).
    //
    // • Empty directories are ignored. File permissions and timestamps are also
    // ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
Back to top