Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 202 for combinations (0.31 sec)

  1. src/flag/example_test.go

    	// If we wanted to allow the flag to be set multiple times,
    	// accumulating values, we would delete this if statement.
    	// That would permit usages such as
    	//	-deltaT 10s -deltaT 15s
    	// and other combinations.
    	if len(*i) > 0 {
    		return errors.New("interval flag already set")
    	}
    	for _, dt := range strings.Split(value, ",") {
    		duration, err := time.ParseDuration(dt)
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/env_write.txt

    [GOOS:windows] ! go env -w CXX=.\cpp
    [GOOS:windows] ! go env -w CXX=bin\cpp
    [GOOS:windows] stderr 'go: CXX entry is relative; must be absolute path'
    
    # go env -w/-u checks validity of GOOS/ARCH combinations
    env GOOS=
    env GOARCH=
    # check -w doesn't allow invalid GOOS
    ! go env -w GOOS=linuxx
    stderr 'unsupported GOOS/GOARCH pair linuxx'
    # check -w doesn't allow invalid GOARCH
    ! go env -w GOARCH=amd644
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

              parentBuilder) {
        List<TestSuite> derivedSuites = new ArrayList<>(super.createDerivedSuites(parentBuilder));
    
        if (!parentBuilder.getFeatures().contains(SUBSET_VIEW)) {
          // Other combinations are inherited from SortedSetTestSuiteBuilder.
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingIntegrationTest.groovy

        unlockedConf 'org:foo:1.+'
    }
    """
    
            when:
            succeeds 'dependencies'
    
            then:
            lockfileFixture.expectLockStateMissing('unlockedConf')
        }
    
        def "version selector combinations are resolved equally for locked and unlocked configurations"() {
            ['foo', 'foz', 'bar', 'baz'].each { artifact ->
                mavenRepo.module('org', artifact, '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:42:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. istioctl/pkg/clioptions/central.go

    	cmd.PersistentFlags().BoolVar(&o.Plaintext, "plaintext", viper.GetBool("PLAINTEXT"),
    		"Use plain-text HTTP/2 when connecting to server (no TLS).")
    }
    
    // ValidateControlPlaneFlags checks arguments for valid values and combinations
    func (o *CentralControlPlaneOptions) ValidateControlPlaneFlags() error {
    	if o.Xds != "" && o.XdsPodLabel != "" {
    		return fmt.Errorf("either --xds-address or --xds-label, not both")
    	}
    	if o.Plaintext && o.CertDir != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/VariantContext.groovy

            })
        }
    
        static List<VariantContext> from(Object[] listOfDimensionArrays) {
            def result = new ArrayList<VariantContext>()
            def dimensions = GroovyCollections.combinations(listOfDimensionArrays)
            dimensions.each {
                def dimension = new LinkedHashMap<String, VariantDimension>()
                it.eachWithIndex { item, idx ->
                    if (item instanceof VariantDimension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/testFixtures/groovy/org/gradle/buildinit/plugins/fixtures/ScriptDslFixture.groovy

        static final List<List<BuildInitDsl>> scriptDslCombinationsFor(int count) {
            return ([SCRIPT_DSLS] * count).combinations()
        }
    
        static ScriptDslFixture of(BuildInitDsl scriptDsl, TestFile rootDir, String subprojectName) {
            new ScriptDslFixture(scriptDsl, rootDir, subprojectName)
        }
    
        final BuildInitDsl scriptDsl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 00:45:16 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/constant_loading_test.cc

      }
    
      testing::CheckBufferDataIsEqual(expected.dtype(), expected.NumElements(),
                                      revived_tensor->Data(), expected.data());
    }
    
    // Test against combinations of tensors that are
    // 1. Varying dtypes
    // 2. Varying shapes
    // 3. TensorProto serialized using tensor_content vs repeated type
    INSTANTIATE_TEST_SUITE_P(
        ConstantIntegerDtypesTest, ConstantTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. src/path/path_test.go

    	{"abc/def/..", "abc"},
    	{"abc/def/../..", "."},
    	{"/abc/def/../..", "/"},
    	{"abc/def/../../..", ".."},
    	{"/abc/def/../../..", "/"},
    	{"abc/def/../../../ghi/jkl/../../../mno", "../../mno"},
    
    	// Combinations
    	{"abc/./../def", "def"},
    	{"abc//./../def", "def"},
    	{"abc/../../././../def", "../../def"},
    }
    
    func TestClean(t *testing.T) {
    	for _, test := range cleantests {
    		if s := Clean(test.path); s != test.result {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 01:12:09 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/virtualservice/destinationrules.go

    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (d *DestinationRuleAnalyzer) Analyze(ctx analysis.Context) {
    	// To avoid repeated iteration, precompute the set of existing destination host+subset combinations
    	destHostsAndSubsets := initDestHostsAndSubsets(ctx)
    
    	ctx.ForEach(gvk.VirtualService, func(r *resource.Instance) bool {
    		d.analyzeVirtualService(r, ctx, destHostsAndSubsets)
    		return true
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top