Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 540 for desc3 (0.12 sec)

  1. common/config/.golangci.yml

                desc: "use istio.io/istio/pkg/slices"
              - pkg: k8s.io/utils/pointer
                desc: "use istio.io/istio/pkg/ptr"
              - pkg: go.opencensus.io
                desc: "do not use OpenCensus; use OpenTelemetry instead"
              - pkg: golang.org/x/exp/maps
                desc: "do not use golang.org/x/exp/maps; use istio.io/istio/pkg/maps instead"
              - pkg: maps
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. operator/pkg/util/reflect_test.go

    	tests := []struct {
    		desc     string
    		function func(v reflect.Value) bool
    		okValues []any
    	}{
    		{
    			desc:     "IsValuePtr",
    			function: IsValuePtr,
    			okValues: []any{&testInt, &testStruct, &testSlice, &testMap},
    		},
    		{
    			desc:     "IsValueStruct",
    			function: IsValueStruct,
    			okValues: []any{testStruct},
    		},
    		{
    			desc:     "IsValueInterface",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    	metrics := []string{
    		"authenticated_user_requests",
    		"authentication_attempts",
    	}
    
    	testCases := []struct {
    		desc        string
    		response    *authenticator.Response
    		status      bool
    		err         error
    		apiAudience authenticator.Audiences
    		want        string
    	}{
    		{
    			desc: "auth ok",
    			response: &authenticator.Response{
    				User: &user.DefaultInfo{Name: "admin"},
    			},
    			status: true,
    			want: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/sitemaps/sitemap1.txt

    http://www.example.com/
    http://www.example.com/catalog?item=12&desc=vacation_hawaii
    http://www.example.com/catalog?item=73&desc=vacation_new_zealand
    http://www.example.com/catalog?item=74&desc=vacation_newfoundland
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 273 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    	testCases := []struct {
    		desc          string
    		initialVerb   string
    		suggestedVerb string
    		request       *http.Request
    		requestInfo   *request.RequestInfo
    		expectedVerb  string
    	}{
    		{
    			desc:         "An empty string should be designated as unknown",
    			initialVerb:  "",
    			request:      nil,
    			expectedVerb: "other",
    		},
    		{
    			desc:         "LIST should normally map to LIST",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/policy/util_test.go

    	for _, test := range []struct {
    		desc           string
    		stages         []audit.Stage
    		expectedStages []audit.Stage
    	}{
    		{
    			desc: "should remove one",
    			stages: []audit.Stage{
    				audit.StageResponseStarted,
    			},
    			expectedStages: []audit.Stage{
    				audit.StageRequestReceived,
    				audit.StageResponseComplete,
    				audit.StagePanic,
    			},
    		},
    		{
    			desc: "should remove both",
    			stages: []audit.Stage{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 09 22:38:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/sitemaps/sitemap1.xml.gz

    sitemap1.xml http://www.example.com/ 2005-01-01 monthly 0.8 http://www.example.com/catalog?item=12&desc=vacation_hawaii weekly http://www.example.com/catalog?item=73&desc=vacation_new_zealand 2004-12-23 weekly http://www.example.com/catalog?item=74&desc=vacation_newfoundland 2004-12-23T18:00:15+00:00 0.3 http://www.example.com/catalog?item=83&desc=vacation_usa 2004-11-23...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 332 bytes
    - Viewed (0)
  8. pkg/kubelet/config/http_test.go

    }
    
    func TestExtractInvalidPods(t *testing.T) {
    	var testCases = []struct {
    		desc string
    		pod  *v1.Pod
    	}{
    		{
    			desc: "No version",
    			pod:  &v1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: ""}},
    		},
    		{
    			desc: "Invalid version",
    			pod:  &v1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: "v1betta2"}},
    		},
    		{
    			desc: "Invalid volume name",
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{APIVersion: "v1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  9. pkg/controller/certificates/rootcacertpublisher/metrics_test.go

    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    )
    
    func TestSyncCounter(t *testing.T) {
    	testCases := []struct {
    		desc    string
    		err     error
    		metrics []string
    		want    string
    	}{
    		{
    			desc: "nil error",
    			err:  nil,
    			metrics: []string{
    				"root_ca_cert_publisher_sync_total",
    			},
    			want: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 16 12:05:32 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/SortingAnnotationVisitor.java

        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String name, String desc) {
            AnnotationMember annotation = new AnnotationMember(desc, true);
            SortingAnnotationVisitor visitor =
                new SortingAnnotationVisitor(annotation, super.visitAnnotation(name, desc));
            visitor.parentVisitor = this;
            visitor.annotationValueName = nameOrValue(name);
            return visitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top