Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 202 for combinations (0.38 sec)

  1. docs/en/docs/advanced/dataclasses.md

        FastAPI will use the `response_model` parameter (that includes dataclasses) to convert the response.
    
    You can combine `dataclasses` with other type annotations in many different combinations to form complex data structures.
    
    Check the in-code annotation tips above to see more specific details.
    
    ## Learn More
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            if (selectedNodes.size() < 2) {
                return;
            }
            Set<Set<NodeState>> combinations = Sets.combinations(selectedNodes, 2);
            Set<NodeState> incompatibleNodes = new HashSet<>();
            for (Set<NodeState> combination : combinations) {
                Iterator<NodeState> it = combination.iterator();
                NodeState first = it.next();
                NodeState second = it.next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

            outputContains '(green)'
    
            where:
            [scriptTarget_, serviceType_] << [
                ScriptTarget.values(),
                [ArchiveOperations, FileSystemOperations, ExecOperations]
            ].combinations()
            scriptTarget = scriptTarget_ as ScriptTarget
            serviceType = serviceType_ as Class<?>
            targetType = scriptTarget.targetType
            simpleServiceTypeName = serviceType.simpleName
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

        }
    
        static List<Spec> specs() {
            [
                definitions(),
                SystemPropertyAccess.values()
            ]
                .combinations()
                .findAll { List<BuildWithSystemPropertyDefined> definitions, SystemPropertyAccess access ->
                    access.isApplicableToBuild(definitions)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      if any, in Source Code or other form. This patent license shall
      apply to the combination of the Contribution and the Program if, at
      the time the Contribution is added by the Contributor, such addition
      of the Contribution causes such combination to be covered by the
      Licensed Patents. The patent license shall not apply to any other
      combinations which include the Contribution. No hardware per se is
      licensed hereunder.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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