Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for desc1 (0.19 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

            configurationContainer.newConf.is(configuration)
        }
    
        def addsNewConfigurationWithClosureWhenConfiguringSelf() {
            when:
            String someDesc = 'desc1'
            configurationContainer.configure {
                newConf {
                    description = someDesc
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pkg/adsc/delta_test.go

        SDS/kubernetes://test:
    LDS/:
    `,
    		},
    	}
    	for _, item := range descs {
    		desc := item // avoid refer to on-stack-var
    		expected := make(map[string]*discovery.DeltaDiscoveryResponse)
    		for _, response := range item.serverResponses {
    			expected[response.TypeUrl] = response
    		}
    		tc := testCase{
    			desc:     desc.desc,
    			inClient: NewDeltaWithBackoffPolicy("", &DeltaADSConfig{}, nil),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/adsc/adsc_test.go

    		// todo tests for listeners, clusters, eds, and routes, not sure how to do this.
    	}
    
    	for _, item := range descs {
    		desc := item // avoid refer to on-stack-var
    		expected := map[string]*discovery.DiscoveryResponse{}
    		for _, request := range desc.initialRequests {
    			if desc.excludedResource != "" && request.TypeUrl == desc.excludedResource {
    				continue
    			}
    			expected[request.TypeUrl] = &discovery.DiscoveryResponse{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            String field1
    
            @Option(description = "Descr Field2")
            String field2
    
            @Option(description = "Descr Field3")
            TestEnum field3
    
            @Option(description = "Descr Field4")
            boolean field4
    
            @Option(description = "Descr Field5")
            Integer field5
    
            @Option(description = "Descr Field6")
            List<TestEnum> field6
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  5. pkg/controller/job/indexed_job_utils_test.go

    			}
    		})
    	}
    }
    
    func hollowPodsWithIndexPhase(descs []indexPhase) []*v1.Pod {
    	pods := make([]*v1.Pod, 0, len(descs))
    	for _, desc := range descs {
    		p := &v1.Pod{
    			Status: v1.PodStatus{
    				Phase: desc.Phase,
    			},
    		}
    		if desc.Index != noIndex {
    			p.Annotations = map[string]string{
    				batch.JobCompletionIndexAnnotation: desc.Index,
    			}
    		}
    		pods = append(pods, p)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            when:
            run "help", "--task", "hello"
    
            then:
            output.contains """
    Options
         --valueA     descA
    
         --no-valueA     Disables option --valueA.
    
         --valueB     descB
    
         --no-valueB     Disables option --valueB.
    
         --valueC     descC
    
         --no-valueC     Disables option --valueC."""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption_test.go

    	testCases := []struct {
    		desc string
    		in   *apiserver.KMSConfiguration
    		want field.ErrorList
    	}{{
    		desc: "valid v1 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v1"},
    		want: field.ErrorList{},
    	}, {
    		desc: "valid v2 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v2"},
    		want: field.ErrorList{},
    	}, {
    		desc: "invalid api version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  8. operator/pkg/tpath/tree_test.go

    a:
      nk1:
        nk2: nv2
    `,
    		},
    		{
    			desc:      "DeleteMapEntry",
    			path:      `a.b`,
    			wantFound: true,
    			want: `
    a: {}
    `,
    		},
    		{
    			desc:      "path not found",
    			path:      `a.c.[name:n2].list.[:v3]`,
    			wantFound: false,
    			wantErr:   `path not found at element c in path a.c.[name:n2].list.[:v3]`,
    		},
    		{
    			desc:      "error key",
    			path:      `a.b.[].list`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .desc("Define a user property")
                    .build());
            options.addOption(Option.builder(Character.toString(OFFLINE))
                    .longOpt("offline")
                    .desc("Work offline")
                    .build());
            options.addOption(Option.builder(Character.toString(VERSION))
                    .longOpt("version")
                    .desc("Display version information")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. internal/hash/reader_test.go

    	testCases := []struct {
    		desc              string
    		src               io.Reader
    		size              int64
    		actualSize        int64
    		md5hex, sha256hex string
    		err               error
    	}{
    		0: {
    			desc:       "Success, no checksum verification provided.",
    			src:        bytes.NewReader([]byte("abcd")),
    			size:       4,
    			actualSize: 4,
    		},
    		{
    			desc:       "Failure md5 mismatch.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top