Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 197 for light (0.05 sec)

  1. src/runtime/mgc.go

    	// stackRoots is a snapshot of all of the Gs that existed
    	// before the beginning of concurrent marking. The backing
    	// store of this must not be modified because it might be
    	// shared with allgs.
    	stackRoots []*g
    
    	// Each type of GC state transition is protected by a lock.
    	// Since multiple threads can simultaneously detect the state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ROR", argLength: 2, reg: gp21, asm: "ROR"},                        // arg0 right rotate by (arg1 mod 64) bits
    		{name: "RORW", argLength: 2, reg: gp21, asm: "RORW"},                      // arg0 right rotate by (arg1 mod 32) bits
    		{name: "RORconst", argLength: 1, reg: gp11, asm: "ROR", aux: "Int64"},     // arg0 right rotate by auxInt bits, auxInt should be in the range 0 to 63.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. src/html/template/exec_test.go

    	var value = struct{ Str string }{hello}
    	for i := 0; i < len(delimPairs); i += 2 {
    		text := ".Str"
    		left := delimPairs[i+0]
    		trueLeft := left
    		right := delimPairs[i+1]
    		trueRight := right
    		if left == "" { // default case
    			trueLeft = "{{"
    		}
    		if right == "" { // default case
    			trueRight = "}}"
    		}
    		text = trueLeft + text + trueRight
    		// Now add a comment
    		text += trueLeft + "/*comment*/" + trueRight
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    // and [dst, dst+size) refer to one or more whole values of type src and
    // dst (leaving off the pointerless tail of the space is OK). If this
    // precondition is not followed, this function will fail to scan the
    // right pointers.
    //
    // When in doubt, pass nil for typ. That is safe and will always work.
    //
    // Callers must perform cgo checks if goexperiment.CgoCheck2.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    // The spill of v must dominate that block. The spill must also be issued at
    // a point where v is still in a register.
    //
    // To find the right place, start at b, the block which dominates all restores.
    //  - If b is v.Block, then issue the spill right after v.
    //    It is known to be in a register at that point, and dominates any restores.
    //  - Otherwise, if v is in a register at the start of b,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    	p.checkLimits(re)
    	return re
    }
    
    // maybeConcat implements incremental concatenation
    // of literal runes into string nodes. The parser calls this
    // before each push, so only the top fragment of the stack
    // might need processing. Since this is called before a push,
    // the topmost literal is no longer subject to operators like *
    // (Otherwise ab* would turn into (ab)*.)
    // If r >= 0 and there's a node left over, maybeConcat uses it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			}
    			if code == "cl" || code == "cp" {
    				right = st.exprList('E')
    			} else if code == "dt" || code == "pt" {
    				if len(st.str) > 0 && st.str[0] == 'L' {
    					right = st.exprPrimary()
    				} else {
    					right = st.unresolvedName()
    					if len(st.str) > 0 && st.str[0] == 'I' {
    						args := st.templateArgs()
    						right = &Template{Name: right, Args: args}
    					}
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSortedMap.java

          this.comparator = checkNotNull(comparator);
        }
    
        /**
         * Associates {@code key} with {@code value} in the built map. Duplicate keys, according to the
         * comparator (which might be the keys' natural order), are not allowed, and will cause {@link
         * #build} to fail.
         */
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> put(K key, V value) {
          super.put(key, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        }
                    }
                }
                upcomingNoLongerPendingConstraints = null;
            }
            // This part covers constraint that might be triggered in the future if the node they point gains a real edge
            if (cachedFilteredDependencyStates != null && !cachedFilteredDependencyStates.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	// Historically, RoundTrip has not modified the Request in any way.
    	// We could avoid the need to keep a map of all in-flight requests by adding
    	// a field to the Request containing its cancel func, and setting that field
    	// while the request is in-flight. Callers aren't supposed to reuse a Request
    	// until after the response body is closed, so this wouldn't violate any
    	// concurrency guarantees.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top