Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,585 for room (0.41 sec)

  1. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		regNamed[name] = mask
    		return mask
    	}
    
    	// General purpose registers.
    	for r := 0; r <= 31; r++ {
    		if r == riscv64REG_LR {
    			// LR is not used by regalloc, so we skip it to leave
    			// room for pseudo-register SB.
    			continue
    		}
    
    		mask := addreg(r, "")
    
    		// Add general purpose registers to gpMask.
    		switch r {
    		// ZERO, GP, TP and TMP are not in any gp mask.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/transform/transform.go

    				// The Transform call was successful; we are complete if we
    				// cannot read more bytes into src.
    				r.transformComplete = r.err != nil
    				continue
    			case err == ErrShortDst && (r.dst1 != 0 || n != 0):
    				// Make room in dst by copying out, and try again.
    				continue
    			case err == ErrShortSrc && r.src1-r.src0 != len(r.src) && r.err == nil:
    				// Read more bytes into src via the code below, and try again.
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    	BEQ	X7, g, g0
    
    	CALL	gosave_systemstack_switch<>(SB)
    	MOV	X7, g
    	CALL	runtime·save_g(SB)
    	MOV	(g_sched+gobuf_sp)(g), X2
    
    	// Now on a scheduling stack (a pthread-created stack).
    g0:
    	// Save room for two of our pointers.
    	SUB	$16, X2
    	MOV	X9, 0(X2)	// save old g on stack
    	MOV	(g_stack+stack_hi)(X9), X9
    	SUB	X8, X9, X8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. src/runtime/asm_s390x.s

    	CMPBEQ	R7, g, g0
    	BL	gosave_systemstack_switch<>(SB)
    	MOVD	R7, g
    	BL	runtime·save_g(SB)
    	MOVD	(g_sched+gobuf_sp)(g), R15
    
    	// Now on a scheduling stack (a pthread-created stack).
    g0:
    	// Save room for two of our pointers, plus 160 bytes of callee
    	// save area that lives on the caller stack.
    	SUB	$176, R15
    	MOVD	$~7, R6
    	AND	R6, R15                 // 8-byte alignment for gcc ABI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InternetDomainName.java

       */
      private static final int MAX_PARTS = 127;
    
      /**
       * Maximum length of a full domain name, including separators, and leaving room for the root
       * label. See <a href="http://www.ietf.org/rfc/rfc2181.txt">RFC 2181</a> part 11.
       */
      private static final int MAX_LENGTH = 253;
    
      /**
       * Maximum size of a single part of a domain name. See <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/base.css

          navigates directly to section anchors.
         */
        #content h2[id], #content h3[id], #content h4[id] {
            padding-top: 60px;
        }
    
        #content h2[id] {
            /* Little extra room above h2s */
            margin-top: -1em;
        }
    
        #content h3[id], #content h4[id] {
            margin-top: -60px;
        }
    
        .site-header__navigation {
            flex-direction: row;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

      }
    
      /** Header table backing array is initially 8 long, let's ensure it grows.  */
      @Test
      fun dynamicallyGrowsBeyond64Entries() {
        // Lots of headers need more room!
        hpackReader = Hpack.Reader(bytesIn, 16384, 4096)
        bytesIn.writeByte(0x3F) // Dynamic table size update (size = 16384).
        bytesIn.writeByte(0xE1)
        bytesIn.writeByte(0x7F)
        for (i in 0..255) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      auto bias_values = mlir::cast<DenseFPElementsAttr>(bias_op.getValue());
      // Restrict maximum absolute value of bias within INT_MAX / 2, to make some
      // room for accumulator.
      if (auto bias_quantized_type = mlir::dyn_cast<UniformQuantizedType>(params);
          bias_quantized_type != nullptr) {
        double bias_half_range = 0.0f;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  9. docs/en/docs/async.md

    *Yep, that's the whole story*.
    
    ---
    
    There's no waiting 🕙 anywhere, just a lot of work to be done, on multiple places of the house.
    
    You could have turns as in the burgers example, first the living room, then the kitchen, but as you are not waiting 🕙 for anything, just cleaning and cleaning, the turns wouldn't affect anything.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            // not compiled by XLA altogether or, if assigned to an XLA_* device
            // with "must compile" semantics, compiled into a trivial single-op
            // cluster.  This approach leaves some room for improvement, and we can
            // consider implementing a more aggressive data-flow-analysis based
            // solution in the future if needed.
            //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top