Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 179 for north (0.04 sec)

  1. src/cmd/go/internal/modload/build.go

    		} else {
    			completeFromModCache(info)
    		}
    		return info
    	}
    
    	// Don't hit the network to fill in extra data for replaced modules.
    	// The original resolved Version and Time don't matter enough to be
    	// worth the cost, and we're going to overwrite the GoMod and Dir from the
    	// replacement anyway. See https://golang.org/issue/27859.
    	info.Replace = &modinfo.ModulePublic{
    		Path:    r.Path,
    		Version: r.Version,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableMap.java

          return build(/* throwIfDuplicateKeys= */ true);
        }
    
        public ImmutableMap<K, V> buildKeepingLast() {
          if (valueComparator != null) {
            // Probably not worth supporting this in GWT
            throw new UnsupportedOperationException(
                "orderEntriesByValue + buildKeepingLast not supported under GWT");
          }
          return build(/* throwIfDuplicateKeys= */ false);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/runtime/mspanset.go

    			// the span at the index which is currently being pushed.
    			// Instead of spinning, let's just notify the caller that
    			// there's nothing currently here. Spinning on this is
    			// almost definitely not worth it.
    			return nil
    		}
    		// Try to claim the current head by CASing in an updated head.
    		// This may fail transiently due to a push which modifies the
    		// tail, so keep trying while the head isn't changing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/regexp/onepass.go

    // onepass Prog, the Prog nil is returned. makeOnePass is recursive
    // to the size of the Prog.
    func makeOnePass(p *onePassProg) *onePassProg {
    	// If the machine is very long, it's not worth the time to check if we can use one pass.
    	if len(p.Inst) >= 1000 {
    		return nil
    	}
    
    	var (
    		instQueue    = newQueue(len(p.Inst))
    		visitQueue   = newQueue(len(p.Inst))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/doc/main.go

    // (possibly with a .method) within that package.
    // parseSymbol is used to analyze the symbol itself.
    // The boolean final argument reports whether it is possible that
    // there may be more directories worth looking at. It will only
    // be true if the package path is a partial match for some directory
    // and there may be more matches. For example, if the argument
    // is rand.Float64, we must scan both crypto/rand and math/rand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/runtime/arena_test.go

    	x := new([8 << 20]byte)
    	xp := uintptr(unsafe.Pointer(&x[124]))
    	var finalized atomic.Bool
    	SetFinalizer(x, func(_ *[8 << 20]byte) {
    		finalized.Store(true)
    	})
    
    	// Write three chunks worth of pointer data. Three gives us a
    	// high likelihood that when we write 2 later, we'll get the behavior
    	// we want.
    	a := NewUserArena()
    	for i := 0; i < int(UserArenaChunkBytes/goarch.PtrSize*3); i++ {
    		var x any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

     * your VCS. The scripts delegates to this JAR.
     */
    @DisableCachingByDefault(because = "Updating the wrapper is not worth caching")
    public abstract class Wrapper extends DefaultTask {
        public static final String DEFAULT_DISTRIBUTION_PARENT_NAME = WrapperDefaults.DISTRIBUTION_PATH;
    
        /**
         * Specifies the Gradle distribution type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/internal/trace/trace_test.go

    		// overflows. Based on the size of profBufWordCount, that takes a bit over
    		// 1900 CPU samples or 19 thread-seconds at a 100 Hz sample rate. If we've
    		// hit that case, then we definitely have at least one full buffer's worth
    		// of CPU samples, so we'll call that success.
    		overflowed := totalTraceSamples >= 1900
    		if traceSamples < pprofSamples {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/switch.go

    	if base.Flag.N != 0 || !ssagen.Arch.LinkArch.CanJumpTable || base.Ctxt.Retpoline {
    		return false
    	}
    	if len(cc) < minCases {
    		return false // not enough cases for it to be worth it
    	}
    	if cc[0].lo.Val().Kind() != constant.Int {
    		return false // e.g. float
    	}
    	if s.exprname.Type().Size() > int64(types.PtrSize) {
    		return false // 64-bit switches on 32-bit archs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            private static final CachingDisabledReason NOT_CACHEABLE = new CachingDisabledReason(CachingDisabledReasonCategory.NOT_CACHEABLE, "Not worth caching.");
    
            private final String templateId;
            private final HashCode sourceHashCode;
            private final ClassLoader classLoader;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top