Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 819 for combinations (0.28 sec)

  1. tensorflow/c/experimental/saved_model/core/saved_variable_loading_test.cc

      testing::CheckBufferDataIsEqual(
          output_tensor->Type(), output_tensor->NumElements(),
          output_tensor->Data(), expected_tensor->Data());
    }
    
    // Test against combinations of SavedVariables of
    // 1. Varying dtypes
    // 2. Varying shapes
    INSTANTIATE_TEST_SUITE_P(
        SavedVariableIntegerDtypesTest, SavedVariableLoadingTest,
        ::testing::Combine(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. android/guava-tests/test/com/google/common/cache/CacheReferencesTest.java

    import com.google.common.collect.Iterables;
    import java.lang.ref.WeakReference;
    import junit.framework.TestCase;
    
    /**
     * Tests of basic {@link LoadingCache} operations with all possible combinations of key & value
     * strengths.
     *
     * @author mike nonemacher
     */
    public class CacheReferencesTest extends TestCase {
    
      private static final CacheLoader<Key, String> KEY_TO_STRING_LOADER =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 6.1K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

        if (!parentBuilder.getFeatures().contains(NoRecurse.DESCENDING)) {
          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMAP)) {
          // Other combinations are inherited from SortedMapTestSuiteBuilder.
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubmapSuite(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
    - 7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

    import org.gradle.integtests.fixtures.RequiredFeature
    import org.gradle.integtests.fixtures.resolve.ResolveTestFixture
    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    import spock.lang.Issue
    
    // Limit the combinations of tests since we're only interested in the consistency
    // behavior, not actual metadata
    @RequiredFeature(feature = GradleMetadataResolveRunner.REPOSITORY_TYPE, value = "maven")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

        if (!parentBuilder.getFeatures().contains(NoRecurse.DESCENDING)) {
          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMAP)) {
          // Other combinations are inherited from SortedMapTestSuiteBuilder.
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubmapSuite(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
    - 7K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

                'f1$${Some}OtherText',
                'f1$${SomeOther$$$Text',
                'f1$$${my.property}Text',
                '${my.property}'],
                [AntType.FileSet, AntType.ResourceCollection]
            ].combinations()
        }
    
    
    }
    
    public class TestTask extends Task {
        @Override
        void execute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  10. 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)
Back to top