Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 89 of 89 for findMin (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    Please see https://issuetracker.google.com/issues/115873051[this issue].
    
    == Lint
    
    Users of Android’s `Lint` task are well aware of the heavy performance penalty they pay for using it, but also know that it is indispensable for finding common issues in Android projects.
    Currently, this task is not cacheable.
    This task is planned to be cacheable with the release of Android Gradle Plugin 3.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/testing.md

    * Für *Cookies* ein `dict` im `cookies`-Parameter.
    
    Weitere Informationen zum Übergeben von Daten an das Backend (mithilfe von `httpx` oder dem `TestClient`) finden Sie in der <a href="https://www.python-httpx.org" class="external-link" target="_blank">HTTPX-Dokumentation</a>.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:20:01 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/image/color/ycbcr_test.go

    	// each element is itself.
    	for i, c := range p {
    		j := p.Index(c)
    		if i != j {
    			t.Errorf("Index(%v): got %d (color = %v), want %d", c, j, p[j], i)
    		}
    	}
    	// Check that finding the closest color considers alpha, not just red,
    	// green and blue.
    	got := p.Convert(RGBA{0x80, 0x00, 0x00, 0x80})
    	want := RGBA{0x7f, 0x00, 0x00, 0x7f}
    	if got != want {
    		t.Errorf("got %v, want %v", got, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 07:51:17 UTC 2016
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	TypesSizes   types.Sizes    // function for computing sizes of types
    	TypeErrors   []types.Error  // type errors (only if Analyzer.RunDespiteErrors)
    
    	// Report reports a Diagnostic, a finding about a specific location
    	// in the analyzed source code such as a potential mistake.
    	// It may be called by the Run function.
    	Report func(Diagnostic)
    
    	// ResultOf provides the inputs to this analysis pass, which are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/events.md

    !!! info
        Weitere Informationen zu Starlettes `lifespan`-Handlern finden Sie in <a href="https://www.starlette.io/lifespan/" class="external-link" target="_blank">Starlettes Lifespan-Dokumentation</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    [!fuzz] skip
    
    # Tests that a crash caused by a mutator-discovered input writes the bad input
    # to testdata, and fails+reports correctly. This tests the end-to-end behavior
    # of the mutator finding a crash while fuzzing, adding it as a regression test
    # to the seed corpus in testdata, and failing the next time the test is run.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Running the seed corpus for all of the targets should pass the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. src/runtime/mcentral.go

    	deductSweepCredit(spanBytes, 0)
    
    	traceDone := false
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GCSweepStart()
    		traceRelease(trace)
    	}
    
    	// If we sweep spanBudget spans without finding any free
    	// space, just allocate a fresh span. This limits the amount
    	// of time we can spend trying to find free space and
    	// amortizes the cost of small object sweeping over the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/net/http/pprof/pprof_test.go

    		// Delta profile collection has a 1s minimum.
    		t.Skip("skipping in -short mode")
    	}
    
    	testenv.MustHaveGoRun(t)
    
    	gotool, err := testenv.GoTool()
    	if err != nil {
    		t.Fatalf("error finding go tool: %v", err)
    	}
    
    	out, err := testenv.Command(t, gotool, "run", filepath.Join("testdata", "delta_mutex.go")).CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    You usually don't get the achievable performance gains on the first try, see <<build_cache_debugging.adoc#finding_problems,finding problems with task output caching>>.
    As your build logic is evolving and changing it is also important to make sure that the cache effectiveness is not regressing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top