Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 486 for gold (0.09 sec)

  1. android/guava/src/com/google/common/collect/CompactHashSet.java

      /**
       * Creates a {@code CompactHashSet} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without growth.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactHashSet} with enough capacity to hold {@code expectedSize}
       *     elements without resizing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/runtime/lockrank_on.go

    	}
    }
    
    // acquireLockRankAndM acquires a rank which is not associated with a mutex
    // lock. To maintain the invariant that an M with m.locks==0 does not hold any
    // lock-like resources, it also acquires the M.
    //
    // This function may be called in nosplit context and thus must be nosplit.
    //
    //go:nosplit
    func acquireLockRankAndM(rank lockRank) {
    	acquirem()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/regexp/syntax/regexp.go

    	switch re.Op {
    	default:
    		return 0, 0
    
    	case OpLiteral:
    		// If literal is fold-sensitive, return (flagI, 0) or (0, flagI)
    		// according to whether (?i) is active.
    		// If literal is not fold-sensitive, return 0, 0.
    		for _, r := range re.Rune {
    			if minFold <= r && r <= maxFold && unicode.SimpleFold(r) != r {
    				if re.Flags&FoldCase != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

                if (currentLocks.contains(projectLock) || currentLocks.contains(allProjectsLock)) {
                    // if we already hold the project lock for this project
                    if (currentLocks.size() == 1) {
                        // the lock for this project is the only lock we hold, can run the function
                        return function.apply(getMutableModel());
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

            buildFile << """
    class ExtraSelectionRule implements AttributeDisambiguationRule<String> {
        void execute(MultipleCandidatesDetails<String> details) {
            if (details.candidateValues.contains('good')) {
                details.closestMatch('good')
            }
        }
    }
    
    def extra = Attribute.of('extra', String)
    
    dependencies {
        compile project(':lib')
    }
    
    project(':lib') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				return claim
    			}(),
    		},
    		"good-parameters": {
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.Spec.ParametersRef = &resource.ResourceClaimParametersReference{
    					Kind: "foo",
    					Name: "bar",
    				}
    				return claim
    			}(),
    		},
    		"good-parameters-apigroup": {
    			claim: func() *resource.ResourceClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. src/runtime/traceruntime.go

    	}
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(ev, traceArg(newg.goid), tl.startPC(pc), tl.stack(2))
    }
    
    // GoStart emits a GoStart event.
    //
    // Must be called with a valid P.
    func (tl traceLocker) GoStart() {
    	gp := getg().m.curg
    	pp := gp.m.p
    	w := tl.eventWriter(traceGoRunnable, traceProcRunning)
    	w = w.write(traceEvGoStart, traceArg(gp.goid), gp.trace.nextSeq(tl.gen))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/internal/trace/testtrace/validation.go

    			}
    			state, ok := v.gs[id]
    			if ok {
    				if old != state.state {
    					e.Errorf("bad old state for goroutine %d: got %s, want %s", id, old, state.state)
    				}
    				state.state = new
    			} else {
    				if old != trace.GoUndetermined && old != trace.GoNotExist {
    					e.Errorf("bad old state for unregistered goroutine %d: %s", id, old)
    				}
    				state = &goState{state: new}
    				v.gs[id] = state
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

      target.addIllegalOp<UnrealizedConversionCastOp>();
      populateReconcileUnrealizedCastsPatterns(patterns);
      if (failed(applyPartialConversion(module, target, std::move(patterns)))) {
        return module->emitError("Failed to fold unrealized cast");
      }
      return success();
    }
    
    }  // namespace
    
    struct LegalizeStablehloToVhloPass
        : public impl::LegalizeStablehloToVhloPassBase<
              LegalizeStablehloToVhloPass> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/compress/flate/deflate.go

    	// We quit when we get a match that's at least nice long
    	nice := len(win) - pos
    	if d.nice < nice {
    		nice = d.nice
    	}
    
    	// If we've got a match that's good enough, only look in 1/4 the chain.
    	tries := d.chain
    	length = prevLength
    	if length >= d.good {
    		tries >>= 2
    	}
    
    	wEnd := win[pos+length]
    	wPos := win[pos:]
    	minIndex := pos - windowSize
    
    	for i := prevHead; tries > 0; tries-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top