Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 207 for findMin (0.1 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

        ProjectExecutionServices executionServices
    
        def setup() {
            System.setProperty("user.dir", temporaryFolder.testDirectory.absolutePath)
            // This prevents the ProjectBuilder from finding the Gradle build's root settings.gradle
            // and treating the root of the repository as the root of the build
            new File(temporaryFolder.testDirectory, "settings.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	fis, err := os.ReadDir(localdir)
    	if err != nil {
    		u.logger.Printf("Could not find work: failed to read local dir %s: %v", localdir, err)
    		return ans
    	}
    
    	mode, asof := u.dir.Mode()
    	u.logger.Printf("Finding work: mode %s, asof %s", mode, asof)
    
    	// count files end in .v1.count
    	// reports end in .json. If they are not to be uploaded they
    	// start with local.
    	for _, fi := range fis {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/default.go

    Run "go clean -cache" if the directory is getting too large.
    Run "go clean -fuzzcache" to delete the fuzz cache.
    See golang.org to learn more about Go.
    `
    
    // initDefaultCache does the work of finding the default cache
    // the first time Default is called.
    func initDefaultCache() {
    	dir, _ := DefaultDir()
    	if dir == "off" {
    		if defaultDirErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/response-headers.md

    target="_blank">mittels des Präfix 'X-'</a> hinzugefügt werden können.
    
    Wenn Sie jedoch benutzerdefinierte Header haben, die ein Client in einem Browser sehen können soll, müssen Sie diese zu Ihren CORS-Konfigurationen hinzufügen (weitere Informationen finden Sie unter [CORS (Cross-Origin Resource Sharing)](../tutorial/cors.md){.internal-link target=_blank}), unter Verwendung des Parameters `expose_headers`, dokumentiert in <a href="https://www.starlette.io/middleware/#corsmiddleware" class="external-link"...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:06 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/using-request-directly.md

    ## `Request`-Dokumentation
    
    Weitere Details zum <a href="https://www.starlette.io/requests/" class="external-link" target="_blank">`Request`-Objekt finden Sie in der offiziellen Starlette-Dokumentation</a>.
    
    !!! note "Technische Details"
        Sie können auch `from starlette.requests import Request` verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:32 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate_common.go

    	}
    	valuePath := cnMap.ToHelmValuesTreeRoot
    	enabledPath := valuePath + ".enabled"
    	enableNodeI, found, err := tpath.Find(valueSpec, util.ToYAMLPath(enabledPath))
    	if err != nil {
    		return false, false, fmt.Errorf("error finding component enablement path: %s in helm value.yaml tree", enabledPath)
    	}
    	if !found {
    		// Some components do not specify enablement should be treated as enabled if the root node in the component subtree exists.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_goroot_symlink.txt

    symlink $WORK/share/goroot/src -> $GOROOT${/}src
    symlink $WORK/lib/goroot/src -> ../../share/goroot/src
    symlink $WORK/lib/goroot/pkg -> $GOROOT${/}pkg
    
    # Verify that our symlink shenanigans don't prevent cmd/go from finding its
    # GOROOT using os.Executable.
    #
    # To do so, we copy the actual cmd/go executable — which is implemented as the
    # cmd/go test binary instead of the original $GOROOT/bin/go, which may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/io/fs/walk_test.go

    		if clear {
    			return nil
    		}
    		return err
    	}
    	return nil
    }
    
    func TestWalkDir(t *testing.T) {
    	tmpDir := t.TempDir()
    
    	origDir, err := os.Getwd()
    	if err != nil {
    		t.Fatal("finding working dir:", err)
    	}
    	if err = os.Chdir(tmpDir); err != nil {
    		t.Fatal("entering temp dir:", err)
    	}
    	defer os.Chdir(origDir)
    
    	fsys := makeTree()
    	errors := make([]error, 0, 10)
    	clear := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 15:21:18 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. pkg/kubelet/preemption/preemption.go

    // minimal impact for guaranteed pods > minimal impact for burstable pods > minimal impact for besteffort pods.
    // minimal impact is defined as follows: fewest pods evicted > fewest total requests of pods.
    // finding the fewest total requests of pods is considered besteffort.
    type CriticalPodAdmissionHandler struct {
    	getPodsFunc eviction.ActivePodsFunc
    	killPodFunc eviction.KillPodFunc
    	recorder    record.EventRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	// of exposing one set of concepts.  autoscaling.HPA and extensions.HPA as a for instance
    	// The order of the slice matters!  It is the priority order of lookup for finding a storage location
    	cohabitatingResources []schema.GroupResource
    	// encoderDecoratorFn is optional and may wrap the provided encoder prior to being serialized.
    	encoderDecoratorFn func(runtime.Encoder) runtime.Encoder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top