Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 234 for IsSame (0.07 sec)

  1. ci/official/any.sh

    #
    # 2. RUN ANY OTHER SCRIPT AND ENV WITH NO SIDE EFFECTS (NO UPLOADS)
    #    To use:
    #       export TFCI=ci/official/envs/env_goes_here
    #       export TF_ANY_SCRIPT=ci/official/wheel.sh
    #       ./any.sh
    #
    # 3. DO THE SAME WITH A LOCAL CACHE OR RBE:
    #       export TF_ANY_EXTRA_ENV=ci/official/envs/public_cache,ci/official/envs/disk_cache
    #       ...
    #       ./any.sh
    #     or
    #       export TF_ANY_EXTRA_ENV=ci/official/envs/local_rbe
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/features/client_adapter.go

    		case clientfeatures.GA:
    			converted.PreRelease = featuregate.GA
    		case clientfeatures.Deprecated:
    			converted.PreRelease = featuregate.Deprecated
    		default:
    			// The default case implies programmer error.  The same set of prerelease
    			// constants must exist in both component-base and client-go, and each one
    			// must have a case here.
    			panic(fmt.Sprintf("unrecognized prerelease %q of feature %q", spec.PreRelease, name))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 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