Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,689 for resort (0.3 sec)

  1. subprojects/diagnostics/src/main/resources/META-INF/gradle-plugins/org.gradle.project-report.properties

    Luke Daley <******@****.***> 1408518455 +1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 20 07:10:35 UTC 2014
    - 65 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/sort.go

    Matthew Dempsky <******@****.***> 1622083951 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 27 22:13:38 UTC 2021
    - 765 bytes
    - Viewed (0)
  3. pkg/registry/authorization/selfsubjectaccessreview/rest.go

    }
    
    func (r *REST) New() runtime.Object {
    	return &authorizationapi.SelfSubjectAccessReview{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    	return "selfsubjectaccessreview"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/fmtsort/sort.go

    // Each KeyValue pair contains a map key and its corresponding value.
    type SortedMap []KeyValue
    
    // KeyValue holds a single key and value pair found in a map.
    type KeyValue struct {
    	Key, Value reflect.Value
    }
    
    // Sort accepts a map and returns a SortedMap that has the same keys and
    // values but in a stable sorted order according to the keys, modulo issues
    // raised by unorderable key values such as NaNs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// api version and an accept header (may be empty) are passed to the call. If no error occurs,
    	// the caller may return a flag indicating whether the result should be flushed as writes occur
    	// and a content type string that indicates the type of the stream.
    	// If a null stream is returned, a StatusNoContent response wil be generated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/eviction_manager_test.go

    		if result := manager.Admit(&lifecycle.PodAdmitAttributes{Pod: pod}); expected[i] != result.Admit {
    			t.Errorf("Admit pod: %v, expected: %v, actual: %v", pod, expected[i], result.Admit)
    		}
    	}
    
    	// reduce memory pressure
    	fakeClock.Step(1 * time.Minute)
    	summaryProvider.result = summaryStatsMaker("2Gi", podStats)
    	podKiller.pod = nil // reset state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/go/parser/testdata/sort.go2

    package sort
    
    type orderedSlice[Elem comparable] []Elem
    
    func (s orderedSlice[Elem]) Len() int           { return len(s) }
    func (s orderedSlice[Elem]) Less(i, j int) bool { return s[i] < s[j] }
    func (s orderedSlice[Elem]) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    
    // OrderedSlice sorts the slice s in ascending order.
    // The elements of s must be ordered using the < operator.
    func OrderedSlice[Elem comparable](s []Elem) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 902 bytes
    - Viewed (0)
  8. pkg/registry/authorization/selfsubjectrulesreview/rest.go

    	"k8s.io/apiserver/pkg/registry/rest"
    	authorizationapi "k8s.io/kubernetes/pkg/apis/authorization"
    )
    
    // REST implements a RESTStorage for selfsubjectrulesreview.
    type REST struct {
    	ruleResolver authorizer.RuleResolver
    }
    
    // NewREST returns a RESTStorage object that will work against selfsubjectrulesreview.
    func NewREST(ruleResolver authorizer.RuleResolver) *REST {
    	return &REST{ruleResolver}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. pkg/registry/authorization/subjectaccessreview/rest.go

    }
    
    func (r *REST) New() runtime.Object {
    	return &authorizationapi.SubjectAccessReview{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    	return "subjectaccessreview"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. src/net/testdata/freebsd-usevc-resolv.conf

    jfbus <******@****.***> 1555591164 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:51:13 UTC 2019
    - 13 bytes
    - Viewed (0)
Back to top