Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for thresholds (0.67 sec)

  1. src/cmd/compile/internal/test/pgo_inl_test.go

    	for _, fname := range wantNot {
    		fullName := pkg + "." + fname
    		expectedNotInlinedList[fullName] = struct{}{}
    	}
    
    	// Build the test with the profile. Use a smaller threshold to test.
    	// TODO: maybe adjust the test to work with default threshold.
    	gcflag := fmt.Sprintf("-m -m -pgoprofile=%s -d=pgoinlinebudget=160,pgoinlinecdfthreshold=90", profFile)
    	out := buildPGOInliningTest(t, dir, gcflag)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * (usually) must retry.
         */
        int modCount;
    
        /**
         * The table is expanded when its size exceeds this threshold. (The value of this field is
         * always {@code (int) (capacity * 0.75)}.)
         */
        int threshold;
    
        /** The per-segment table. */
        @CheckForNull volatile AtomicReferenceArray<E> table;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    // the original hairiness estimate to form the score. "Status" shows
    // whether anything changed with the site -- did the adjustment bump
    // it down just below the threshold ("PROMOTED") or instead bump it
    // above the threshold ("DEMOTED"); this will be blank ("---") if no
    // threshold was crossed as a result of the heuristics. Note that
    // "Status" also shows whether PGO was involved. "Callee" is the name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    // <endcallsites>
    // <endfuncpreamble>
    func T_call_scoring_in_noninlinable_func(x int, sl []int) int {
    	if x == 101 {
    		// Drive up the cost of inlining this funcfunc over the
    		// regular threshold.
    		for i := 0; i < 10; i++ {
    			for j := 0; j < i; j++ {
    				sl = append(sl, append(sl, append(sl, append(sl, x)...)...)...)
    				sl = append(sl, sl[0], sl[1], sl[2])
    				x += calleeNoInline(x)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

        }
    
        public SuggestDeleteResponse deleteOldWords(final ZonedDateTime threshold) {
            final long start = System.currentTimeMillis();
            final String query = FieldNames.TIMESTAMP + ":[* TO " + threshold.toInstant().toEpochMilli() + "] NOT " + FieldNames.KINDS + ':'
                    + SuggestItem.Kind.USER;
            deleteByQuery(query);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/nat.go

    	// enough to justify the cost of the multiplications.
    
    	// The threshold is selected experimentally as a linear function of n.
    	threshold := n / 4
    
    	// We calculate how many of the most-significant bits of the exponent we can
    	// compute before crossing the threshold, and we do it with doublings.
    	i := bits.UintSize
    	for logR>>i <= threshold {
    		i--
    	}
    	for k := uint(0); k < logR>>i; k++ {
    		rr.Add(rr, m)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

        }
    
        void initTable(AtomicReferenceArray<ReferenceEntry<K, V>> newTable) {
          this.threshold = newTable.length() * 3 / 4; // 0.75
          if (!map.customWeigher() && this.threshold == maxSegmentWeight) {
            // prevent spurious expansion before eviction
            this.threshold++;
          }
          this.table = newTable;
        }
    
        @GuardedBy("this")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security.go

    	re(`-m(no-)?avx[0-9a-z.]*`),
    	re(`-m(no-)?ms-bitfields`),
    	re(`-m(no-)?stack-(.+)`),
    	re(`-mmacosx-(.+)`),
    	re(`-mios-simulator-version-min=(.+)`),
    	re(`-miphoneos-version-min=(.+)`),
    	re(`-mlarge-data-threshold=[0-9]+`),
    	re(`-mtvos-simulator-version-min=(.+)`),
    	re(`-mtvos-version-min=(.+)`),
    	re(`-mwatchos-simulator-version-min=(.+)`),
    	re(`-mwatchos-version-min=(.+)`),
    	re(`-mnop-fun-dllimport`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/ld_test.go

    	}
    
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    	dir := t.TempDir()
    
    	// NB: the use of -ldflags=-debugtextsize=1048576 tells the linker to
    	// split text sections at a size threshold of 1M instead of the
    	// architected limit of 67M or larger. The choice of building cmd/go
    	// is arbitrary; we just need something sufficiently large that uses
    	// external linking.
    	exe := filepath.Join(dir, "go.exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/plugin_test.go

    		t.Skipf("text section splitting is not done in %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Use -ldflags=-debugtextsize=262144 to let the linker split text section
    	// at a smaller size threshold, so it actually splits for the test binary.
    	goCmd(nil, "build", "-ldflags=-debugtextsize=262144", "-o", "host-split.exe", "./host")
    	run(t, "./host-split.exe")
    
    	// Check that we did split text sections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top