Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 387 for desc2 (0.05 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistrySpec.groovy

            when:
            registry.add(generator("desc1"))
            registry.add(generator("desc2"))
            registry.add(generator("desc3"))
    
            then:
            registry.get("desc1") != null
            registry.get("desc2") != null
            registry.get("desc3") != null
        }
    
        def "cannot add multiple descriptors with same id"() {
            when:
            registry.add(generator("desc1"))
            registry.add(generator("desc1"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

      TF_ColocateWith(desc_, feed2_);
      FinishAndVerify(desc_, {"loc:@feed1", "loc:@feed2"});
    }
    
    TEST_F(CApiColocationTest, Proto_StringList) {
      SetViaProto(desc_, {"loc:@feed1"});
      SetViaStringList(desc_, {"loc:@feed2"});
      FinishAndVerify(desc_, {"loc:@feed2"});
    }
    
    TEST_F(CApiColocationTest, StringList_Proto) {
      SetViaStringList(desc_, {"loc:@feed1"});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. manifests/addons/dashboards/lib/panels.libsonnet

          + custom.withGradientMode('hue')
          + if std.length(desc) > 0 then
            timeSeries.panelOptions.withDescription(desc)
          else {},
    
        simple(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.legend.withCalcs([])
          + options.legend.withDisplayMode('list'),
    
        short(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('short')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults_test.go

    )
    
    func TestKMSProviderTimeoutDefaults(t *testing.T) {
    	testCases := []struct {
    		desc string
    		in   *KMSConfiguration
    		want *KMSConfiguration
    	}{
    		{
    			desc: "timeout not supplied",
    			in:   &KMSConfiguration{},
    			want: &KMSConfiguration{Timeout: defaultTimeout, CacheSize: &defaultCacheSize, APIVersion: defaultAPIVersion},
    		},
    		{
    			desc: "timeout supplied",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. operator/pkg/util/yaml_test.go

    	tests := []struct {
    		desc   string
    		in1    string
    		in2    string
    		expect bool
    	}{
    		{
    			desc:   "yaml-equal",
    			in1:    `foo: bar`,
    			in2:    `foo: bar`,
    			expect: true,
    		},
    		{
    			desc:   "bad-yaml-1",
    			in1:    "O#JF*()#",
    			in2:    `foo: bar`,
    			expect: false,
    		},
    		{
    			desc:   "bad-yaml-2",
    			in1:    `foo: bar`,
    			in2:    "#OHJ*#()F",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:00:14 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top