Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 369 for combinations (0.32 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationQueueTest.groovy

                 [new Failure(), new Failure(), new Success()],
                 [new Failure(), new Success(), new Failure()],
                 [new Success(), new Failure(), new Failure()]],
                [1, 4, 10]].combinations()
        }
    
        def "when log location is set value is propagated in exceptions"() {
            given:
            setupQueue(1)
            operationQueue.setLogLocation(LOG_LOCATION)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/filterchain_options.go

    	Protocol networking.ListenerProtocol
    	// Whether this chain should terminate TLS or not
    	TLS bool
    }
    
    // Set of filter chain match options used for various combinations.
    var (
    	// Same as inboundPermissiveFilterChainMatchOptions except for following case:
    	// FCM 3: ALPN [istio-peer-exchange, istio] Transport protocol: tls            --> TCP traffic from sidecar over TLS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

       * memory but only for as long as the user retains a reference to it. That is, the set returned by
       * {@code combinations} does not retain the individual subsets.
       *
       * @param set the set of elements to take combinations of
       * @param size the number of elements per combination
       * @return the set of all combinations of {@code size} elements from {@code set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

       * memory but only for as long as the user retains a reference to it. That is, the set returned by
       * {@code combinations} does not retain the individual subsets.
       *
       * @param set the set of elements to take combinations of
       * @param size the number of elements per combination
       * @return the set of all combinations of {@code size} elements from {@code set}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

            then:
            outputContains("Hello World!")
    
            where:
            [scriptDsl, testFramework] << [ScriptDslFixture.SCRIPT_DSLS, [BuildInitTestFramework.JUNIT, BuildInitTestFramework.TESTNG]].combinations()
        }
    
        def "creates sample source with package and spock and #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    //  Bool()                     - Yields sequence {false, true}.
    //  Combine(g1, g2, ..., gN)   - Yields all combinations (the Cartesian product
    //                               for the math savvy) of the values generated
    //                               by the N generators.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/MissingScriptFixture.groovy

                    new MissingBuildInBuildSrc(),
                    new MissingSettingsInBuildSrc(),
                    new MissingBuildInIncluded(),
                    new MissingSettingsInIncluded()
                ]
            ].combinations().collect { ScriptLanguage scriptLanguage, Scenario scenario ->
                new Spec(scriptLanguage, scenario)
            }
        }
    
        private static List<Spec> singleLanguageSpecs() {
            [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/topology_hints.go

    		}
    
    		// Finally, check to see if enough available devices remain on the
    		// current NUMA node combination to satisfy the device request.
    		for d := range available {
    			if mask.AnySet(m.getNUMANodeIds(m.allDevices[resource][d].Topology)) {
    				numMatching++
    			}
    		}
    
    		// If they don't, then move onto the next combination.
    		if numMatching < request {
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    	}
    }
    
    func mustBuildEnvs(baseEnv *environment.EnvSet) variableDeclEnvs {
    	requestType := BuildRequestType()
    	namespaceType := BuildNamespaceType()
    	envs := make(variableDeclEnvs, 8) // since the number of variable combinations is small, pre-build a environment for each
    	for _, hasParams := range []bool{false, true} {
    		for _, hasAuthorizer := range []bool{false, true} {
    			for _, strictCost := range []bool{false, true} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/cmd/cover/cfg_test.go

    		bargs = append(bargs, ofs...)
    		cmd := testenv.Command(t, testenv.GoToolPath(t), bargs...)
    		cmd.Dir = instdira
    		run(cmd, t)
    	}
    
    	// Do some error testing to ensure that various bad options and
    	// combinations are properly rejected.
    
    	// Expect error if config file inaccessible/unreadable.
    	mode := "atomic"
    	errExpected := true
    	tag := "errors"
    	_, _, errmsg := runPkgCover(t, instdira, tag, "/not/a/file", mode,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top