Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 219 for IsSame (0.06 sec)

  1. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/IntermediateToolingModelProvider.java

    /**
     * Fetches models for given projects in an Isolated Project-compatible manner.
     * <p>
     * It should be used by tooling model builders when they need to aggregate models
     * from <b>multiple projects of the same build</b>.
     */
    @NonNullApi
    @ServiceScope(Scope.Build.class)
    public interface IntermediateToolingModelProvider {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputCleaner.java

     * system property is set to {@code true}.
     * <p>
     * Most of our samples that aren't aiming to test the configuration cache itself, do not care about
     * its output much. This normalizer allows to reuse the same "golden" output files when testing such
     * samples with the configuration cache enabled.
     */
    public class ConfigurationCacheOutputCleaner implements OutputNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/reader.h

                          SavedModel* saved_model_proto);
    
    // Finds and returns the MetaGraphDef (within the provided SavedModel) that
    // matches the given set of tags. The lifetime of the returned MetaGraphDef is
    // the same as the lifetime of `saved_model_proto`.
    //
    // FindMetaGraphDef returns a failure status when no MetaGraphDef matches the
    // provided tags.
    absl::StatusOr<MetaGraphDef*> FindMetaGraphDef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 00:19:29 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

    import org.apache.maven.api.PathType;
    
    /**
     * Cache of {@link PathModularization} instances computed for given {@link Path} elements.
     * The cache is used for avoiding the need to reopen the same files many times when the
     * same dependency is used for different scope. For example a path used for compilation
     * is typically also used for tests.
     */
    class PathModularizationCache {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/kube/krt/informer.go

    	// Note: runExistingState is NOT respected here.
    	// Informer doesn't expose a way to do that. However, due to the runtime model of informers, this isn't a dealbreaker;
    	// the handlers are all called async, so we don't end up with the same deadlocks we would have in the other collection types.
    	// While this is quite kludgy, this is an internal interface so its not too bad.
    	if !i.eventHandlers.Insert(f) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

         *
         * @param added a collector that represents an addition to the collection to be returned by this supplier
         * @return a new supplier that produces a collection that contains the
         * same elements as this supplier, plus the elements obtained via the given <code>added</code> collector
         */
        CollectionSupplier<T, C> plus(Collector<T> added);
    
        ExecutionTimeValue<? extends C> calculateExecutionTimeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/InternalNullabilityTest.java

         * See {@code subprojects/core-api/src/main/java/org/gradle/package-info.java} for an example.
         * <p>
         * Note that adding the annotation for a package in one subproject will automatically apply it for the same package in all other subprojects.
         * Therefore, it's advised to add the annotation to the package in the most appropriate subproject.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters.h

    inline int32_t CalculateBinIndex(const float value, const float lower_bound,
                                     const float bin_width) {
      return std::floor((value - lower_bound) / bin_width);
    }
    
    // Same as `CalculateBinIndex` but clamps to avoid out-of-bound.
    inline int32_t CalculateBinIndexSafe(const float value, const float lower_bound,
                                         const float bin_width,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtSymbolPointer.kt

        public abstract fun restoreSymbol(analysisSession: KaSession): S?
    
        /**
         * @return **true** if [other] pointer can be restored to the same symbol. The operation is symmetric and transitive.
         */
        public open fun pointsToTheSameSymbolAs(other: KaSymbolPointer<KaSymbol>): Boolean = this === other
    
        override fun toString(): String = renderAsDataClassToString()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue6977.go

    type U7 interface { M32 /* ERROR "duplicate method" */ ; m() }
    type U8 interface { m(); M32 /* ERROR "duplicate method" */ }
    type U9 interface { M32; M64 /* ERROR "duplicate method" */ }
    
    // Verify that repeated embedding of the same interface(s)
    // eliminates duplicate methods early (rather than at the
    // end) to prevent exponential memory and time use.
    // Without early elimination, computing T29 may take dozens
    // of minutes.
    type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top