Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 238 for findMin (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/volume/metrics_du_test.go

    	}
    	defer os.RemoveAll(tmpDir)
    	metrics := NewMetricsDu(tmpDir)
    
    	expectedEmptyDirUsage, err := volumetest.FindEmptyDirectoryUsageOnTmpfs()
    	if err != nil {
    		t.Errorf("Unexpected error finding expected empty directory usage on tmpfs: %v", err)
    	}
    
    	actual, err := metrics.GetMetrics()
    	if err != nil {
    		t.Errorf("Unexpected error when calling GetMetrics %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/api/v1/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List(extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  7. src/testing/quick/quick.go

    func (s SetupError) Error() string { return string(s) }
    
    // A CheckError is the result of Check finding an error.
    type CheckError struct {
    	Count int
    	In    []any
    }
    
    func (s *CheckError) Error() string {
    	return fmt.Sprintf("#%d: failed on input %s", s.Count, toString(s.In))
    }
    
    // A CheckEqualError is the result [CheckEqual] finding an error.
    type CheckEqualError struct {
    	CheckError
    	Out1 []any
    	Out2 []any
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/extra-data-types.md

        * Pydantic ermöglicht auch die Darstellung als „ISO 8601 Zeitdifferenz-Kodierung“, <a href="https://docs.pydantic.dev/1.10/usage/exporting_models/#json_encoders" class="external-link" target="_blank">Weitere Informationen finden Sie in der Dokumentation</a>.
    * `frozenset`:
        * Wird in Requests und Responses wie ein `set` behandelt:
            * Bei Requests wird eine Liste gelesen, Duplikate entfernt und in ein `set` umgewandelt.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/strings/search.go

    	for i := range f.badCharSkip {
    		f.badCharSkip[i] = len(pattern)
    	}
    	// The loop condition is < instead of <= so that the last byte does not
    	// have a zero distance to itself. Finding this byte out of place implies
    	// that it is not in the last position.
    	for i := 0; i < last; i++ {
    		f.badCharSkip[pattern[i]] = last - i
    	}
    
    	// Build good suffix table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    For information about the formats supported by Gradle, see <<declaring_dependencies.adoc#sec:dependency-types,dependency types>>.
    
    Metadata describes dependencies.
    Some examples of metadata include:
    
    * coordinates for finding the dependency in a repository
    * information about the project that created the dependency
    * the authors of the dependency
    * other dependencies required for a dependency to work properly, known as _transitive dependencies_
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top