Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 350 for Combine (0.18 sec)

  1. apache-maven/pom.xml

        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
              <configuration>
                <excludes combine.children="append">
                  <exclude>src/assembly/maven/bin/m2.conf</exclude>
                  <!-- these are partial scripts, resulting in mvn scripts -->
                  <exclude>src/assembly/shared/init</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Script.java

        /**
         * <p>Creates a new {@code FileTree} which contains the contents of the given ZIP file. The given zipPath path is
         * evaluated as per {@link #file(Object)}. You can combine this method with the {@link #copy(groovy.lang.Closure)}
         * method to unzip a ZIP file.</p>
         *
         * <p>The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. 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: Thu Aug 24 01:40:03 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

          for (Entry<? extends K, ? extends V> entry : entries) {
            put(entry);
          }
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<K, V> combine(Builder<K, V> other) {
          super.combine(other);
          return this;
        }
    
        @Override
        public Builder<K, V> orderEntriesByValue(Comparator<? super V> valueComparator) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. hack/make-rules/test.sh

          | grep \"${go_test_grep_pattern}\"" \
        {} \
        && test_result=$? || test_result=$?
    
      produceJUnitXMLReport "${junit_filename_prefix}"
    
      COMBINED_COVER_PROFILE="${cover_report_dir}/combined-coverage.out"
      {
        # The combined coverage profile needs to start with a line indicating which
        # coverage mode was used (set, count, or atomic). This line is included in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         * </p>
         *
         * @param right the second provider to combine with
         * @param combiner the combiner of values. May return {@code null}, in which case the provider
         * will have no value.
         * @param <U> the type of the second provider
         * @param <R> the type of the result of the combiner
         * @return a combined provider
         * @since 6.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DefaultDependencyLockingProvider.java

        }
    
        private LockEntryFilter getCompoundLockEntryFilter() {
            if (compoundLockEntryFilter == null) {
                compoundLockEntryFilter = LockEntryFilterFactory.combine(getIgnoredEntryFilter(), updateLockEntryFilter);
            }
            return compoundLockEntryFilter;
        }
    
        private LockEntryFilter getIgnoredEntryFilter() {
            if (ignoredEntryFilter == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/tests/function_test.cc

      ASSERT_TRUE(absl::StrContains(v.status().message(),
                                    "does not match that in signature"));
    }
    
    INSTANTIATE_TEST_SUITE_P(TF2CAPI, FunctionTest,
                             ::testing::Combine(::testing::Values("graphdef",
                                                                  "mlir"),
                                                ::testing::Values(false)));
    
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. cmd/post-policy_test.go

    	credentialConditionStr := fmt.Sprintf(`["eq", "$x-amz-credential", "%s"]`, credential)
    	// Add the meta-uuid string, set to 1234
    	uuidConditionStr := fmt.Sprintf(`["eq", "$x-amz-meta-uuid", "%s"]`, "1234")
    
    	// Combine all conditions into one string.
    	conditionStr := fmt.Sprintf(`"conditions":[%s, %s, %s, %s, %s, %s, %s]`, bucketConditionStr,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserBomTest.groovy

            dep.selector == moduleId('group-b', 'module-b', '1.0')
            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
            dep.constraint
            !dep.transitive
        }
    
        def "a bom can combine dependencies and dependencyManagement constraints"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-a</groupId>
        <artifactId>bom</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top