Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 350 for Combine (0.22 sec)

  1. tensorflow/c/experimental/gradients/math_grad_test.cc

    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*use_function*/ ::testing::Values(true, false)));
    #else
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCAPI, CppGradients,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 17:32:14 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

        @Override
        public Builder<E> addAll(Iterator<? extends E> elements) {
          super.addAll(elements);
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<E> combine(Builder<E> builder) {
          super.combine(builder);
          return this;
        }
    
        @Override
        public ImmutableSortedSet<E> build() {
          return copyOfInternal(comparator, contents.iterator());
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        fun zipTree(zipPath: Any): FileTree
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

    @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    class ComponentOverrideMetadataResolveIntegrationTest extends AbstractModuleDependencyResolveTest {
    
        def "can combine artifact notation and constraints"() {
            resolve.expectDefaultConfiguration(useMaven() ? 'runtime' : 'default')
    
            given:
            repository {
                'org:foo:1.0' {
                    withModule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [KotlinInitScript.copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [KotlinInitScript.file].
         * @return The file tree.
         */
        @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. android/pom.xml

                       JDK6-like APIs.
    
                       So instead, we use javac9, which doesn't lead to this error.
                  -->
                  <compilerArgs combine.children="append">
                    <arg>-J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</arg>
                  </compilerArgs>
                </configuration>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pom.xml

                       JDK6-like APIs.
    
                       So instead, we use javac9, which doesn't lead to this error.
                  -->
                  <compilerArgs combine.children="append">
                    <arg>-J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${javac.version}/javac-${javac.version}.jar</arg>
                  </compilerArgs>
                </configuration>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                        notRequested()
                        byConstraint()
                        byReason("didn't match version 2.0")
                    }
                }
            }
        }
    
        def "can combine required and preferred version in single dependency definition"() {
            repository {
                'org:foo' {
                    '1.0.0'()
                    '1.1.0'()
                    '1.2.0'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableListMultimap.java

          super.putAll(multimap);
          return this;
        }
    
        @CanIgnoreReturnValue
        @Override
        Builder<K, V> combine(ImmutableMultimap.Builder<K, V> other) {
          super.combine(other);
          return this;
        }
    
        /**
         * {@inheritDoc}
         *
         * @since 8.0
         */
        @CanIgnoreReturnValue
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        @Suppress("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top