Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for Sizes (0.18 sec)

  1. src/cmd/link/internal/ld/data.go

    	st := ctxt.makeRelocSymState()
    
    	// This doesn't distinguish the memory size from the file
    	// size, and it lays out the file based on Symbol.Value, which
    	// is the virtual address. DWARF compression changes file sizes,
    	// so dwarfcompress will fix this up later if necessary.
    	eaddr := addr + size
    	for _, s := range syms {
    		if ldr.AttrSubSymbol(s) {
    			continue
    		}
    		val := ldr.SymValue(s)
    		if val >= eaddr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	n   int
    	err error
    	b   byte // byte read, if n == 1
    }
    
    // connReader is the io.Reader wrapper used by *conn. It combines a
    // selectively-activated io.LimitedReader (to bound request header
    // read sizes) with support for selectively keeping an io.Reader.Read
    // call blocked in a background goroutine to wait for activity and
    // trigger a CloseNotifier channel.
    type connReader struct {
    	conn *conn
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                  'has_bias': [True, False],
                  'batch_sizes': [([], []), ([10], [10]), ([2, 3], [2, 3])],
                  'target_opset': [quant_opts_pb2.XLA],
              },
              # Test broadcastable batch sizes.
              {
                  'activation_fn': [None],
                  'has_bias': [True],
                  'batch_sizes': [
                      ([2], []),
                      ([], [2]),
                      ([1], [2]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <a href="https://en.wikipedia.org/wiki/Two's_complement">two's complement arithmetic</a>.
    </p>
    
    <p>
    There is also a set of predeclared numeric types with implementation-specific sizes:
    </p>
    
    <pre class="grammar">
    uint     either 32 or 64 bits
    int      same size as uint
    uintptr  an unsigned integer large enough to store the uninterpreted bits of a pointer value
    </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)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (NilCheck          ptr:(Addr {_} (SB))    _) => ptr
    (NilCheck ptr:(Convert (Addr {_} (SB)) _) _) => ptr
    
    // for late-expanded calls, recognize memequal applied to a single constant byte
    // Support is limited by 1, 2, 4, 8 byte sizes
    (StaticLECall {callAux} sptr (Addr {scon} (SB)) (Const64 [1]) mem)
      && isSameCall(callAux, "runtime.memequal")
      && symIsRO(scon)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          inner_op->hasTrait<mlir::OpTrait::AttrSizedResultSegments>()) {
        // The op has multiple variadic operands or results.
        // Calculate operand and result segment sizes using the OpDef.
        NameRangeMap input_ranges, output_ranges;
        // This will fail only if the OpDef is syntactically invalid.
        // TODO(jpienaar): Convert this CHECK into a properly propagated error.
        TF_CHECK_OK(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `I don't see,' said the Caterpillar.
    
      `I'm afraid I can't put it more clearly,' Alice replied very
    politely, `for I can't understand it myself to begin with; and
    being so many different sizes in a day is very confusing.'
    
      `It isn't,' said the Caterpillar.
    
      `Well, perhaps you haven't found it so yet,' said Alice; `but
    when you have to turn into a chrysalis--you will some day, you
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `I don't see,' said the Caterpillar.
    
      `I'm afraid I can't put it more clearly,' Alice replied very
    politely, `for I can't understand it myself to begin with; and
    being so many different sizes in a day is very confusing.'
    
      `It isn't,' said the Caterpillar.
    
      `Well, perhaps you haven't found it so yet,' said Alice; `but
    when you have to turn into a chrysalis--you will some day, you
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    downstream connection is tunneled. type: integer required: - targetHost - targetPort type: object type: object required: - name type: object type: array trafficPolicy: description: Traffic policies to apply (load balancing policy, connection pool sizes, outlier detection). properties: connectionPool: properties: http: description: HTTP connection pool settings. properties: h2UpgradePolicy: description: Specify if http1.1 connection should be upgraded to http2 for the associated destination. enum:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		maxstacksize = 250000000
    	}
    
    	// An upper limit for max stack size. Used to avoid random crashes
    	// after calling SetMaxStack and trying to allocate a stack that is too big,
    	// since stackalloc works with 32-bit sizes.
    	maxstackceiling = 2 * maxstacksize
    
    	// Allow newproc to start new Ms.
    	mainStarted = true
    
    	if haveSysmon {
    		systemstack(func() {
    			newm(sysmon, nil, -1)
    		})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top