Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 457 for Combine (0.28 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         *
         * @param first the first provider to combine with
         * @param second 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 <A> the type of the first provider
         * @param <B> the type of the second provider
         * @param <R> the type of the result of the combiner
         * @return a combined provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
                    // Created a result which may contain failures. Combine this failure with any failures that happen to be packaged in the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildTreeLifecycleBuildActionExecutor.java

                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
                    // Cleanup has failed, combine the cleanup failure with other failures that may be packed in the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tensorflow/c/eager/unified_api_test.cc

      ASSERT_FALSE(shape.unknown_rank());
    
      ASSERT_EQ(2, shape.dim_size(0));
      ASSERT_EQ(-1, shape.dim_size(1));
    }
    
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCppAPI, UnifiedAPI,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*use_function*/ ::testing::Values(true, false)));
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. docs/en/docs/history-design-future.md

    </blockquote>
    
    ## Investigation
    
    By using all the previous alternatives I had the chance to learn from all of them, take ideas, and combine them in the best way I could find for myself and the teams of developers I have worked with.
    
    For example, it was clear that ideally it should be based on standard Python type hints.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. docs/fr/docs/advanced/additional-responses.md

    ```
    
    Tout sera combiné et inclus dans votre OpenAPI, et affiché dans la documentation de l'API :
    
    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combinez les réponses prédéfinies et les réponses personnalisées
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

          return errors::Internal("Unknown dimension size in constant tensor ",
                                  n->name());
        }
        total_elements *= dim.size();
      }
    
      // TODO(sanjoy): It may make sense to combine this threshold with XLA's "large
      // constant" threshold, if there is one.
      const int kSmallTensorThreshold = 16;
      return total_elements < kSmallTensorThreshold;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. 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)
  9. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

          }
      }
    
      for (sectionList in result.values) {
        mergeAdjacentDeltaMappedRanges(sectionList)
      }
    
      return result.toMap()
    }
    
    /**
     * Modifies [ranges] to combine any adjacent [MappedRange.InlineDelta] of same size to single entry.
     * @returns same instance of [ranges] for convenience
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            // When this classloader is reused for multiple requests, the classpath of subsequent requests may be different.
            // So, update the classpath of this shared classloader
            // It would be better to not combine client classloaders but instead to recreate the client side structure
            if (details.spec instanceof ClientOwnedClassLoaderSpec) {
                ClientOwnedClassLoaderSpec spec = (ClientOwnedClassLoaderSpec) details.spec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top