Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 548 for desc2 (0.04 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. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/sortsOptionsInAlphabeticOrder/build.gradle

        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "valueB", description = "descB")
        public void setValueB(boolean value) {
        }
    
        @Option(option = "valueA", description = "descA")
        public void setValueA(boolean value) {
        }
    
        @Option(option = "valueC", description = "descC")
        public void setValueC(boolean value) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:17:44 UTC 2018
    - 475 bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/cri_metrics.go

    	}
    
    	return c
    }
    
    // Describe implements the metrics.DescribeWithStability interface.
    func (c *criMetricsCollector) DescribeWithStability(ch chan<- *metrics.Desc) {
    	for _, desc := range c.descriptors {
    		ch <- desc
    	}
    }
    
    // Collect implements the metrics.CollectWithStability interface.
    // TODO(haircommander): would it be better if these were processed async?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. releasenotes/notes/desc-to-admin-log-scope.yaml

    Xiaopeng Han <******@****.***> 1657269089 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 08:31:29 UTC 2022
    - 186 bytes
    - Viewed (0)
Back to top