Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,480 for greatest (0.15 sec)

  1. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates an instance of the IdentifyDilatedConvPass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateIdentifyDilatedConvPass();
    
    // Creates an instance of the TensorFlow Lite dialect pass to convert dense
    // tensor to sparse format.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDenseToSparsePass();
    
    // Creates function pass to legalize TF While to TFL While.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. cluster/addons/addon-manager/kube-addons.sh

    # limitations under the License.
    
    # LIMITATIONS
    # 1. Exit code is probably not always correct.
    # 2. There are no unittests.
    # 3. Will not work if the total length of paths to addons is greater than
    #    bash can handle. Probably it is not a problem: ARG_MAX=2097152 on GCE.
    
    # cosmetic improvements to be done
    # 1. Improve the log function; add timestamp, file name, etc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactoryTest.groovy

            !reference.relativeToPathVariable
        }
    
        def "creates null reference for a null jar url"() {
            expect:
            factory.fromJarURI(null) == null
        }
    
        def "creates null reference for a null file path"() {
            expect:
            factory.fromPath(null) == null
        }
    
        def "creates a reference from a variable path"() {
            TestFile file = rootDir.file("a/file.txt")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	}
    	if lec.LeaseDuration < 1 {
    		return nil, fmt.Errorf("leaseDuration must be greater than zero")
    	}
    	if lec.RenewDeadline < 1 {
    		return nil, fmt.Errorf("renewDeadline must be greater than zero")
    	}
    	if lec.RetryPeriod < 1 {
    		return nil, fmt.Errorf("retryPeriod must be greater than zero")
    	}
    	if lec.Callbacks.OnStartedLeading == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

        def "creates snapshot for string"() {
            expect:
            def snapshot = snapshotter.snapshot("abc")
            snapshot instanceof StringValueSnapshot
            snapshot == snapshotter.snapshot("abc")
            snapshot != snapshotter.snapshot("other")
        }
    
        def "creates snapshot for isolated string"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * Creates a dependency scope configuration which can change roles.
         */
        Configuration dependencyScopeUnlocked(String name);
    
        /**
         * Creates a dependency scope configuration which can change role and executes the provided
         * {@code action} against the configuration.
         */
        Configuration dependencyScopeUnlocked(String name, Action<? super Configuration> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

        /**
         * Creates an empty {@link ConfigurableFileCollection} instance.
         */
        ConfigurableFileCollection configurableFiles(String displayName);
    
        /**
         * Creates an empty {@link ConfigurableFileCollection} instance.
         */
        ConfigurableFileCollection configurableFiles();
    
        /**
         * Creates a {@link ConfigurableFileTree} instance with no base dir specified.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apps__v1_openapi.json

    Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Lists.java

     * @author Louis Wasserman
     * @since 2.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Lists {
      private Lists() {}
    
      // ArrayList
    
      /**
       * Creates a <i>mutable</i>, empty {@code ArrayList} instance (for Java 6 and earlier).
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableList#of()} instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

        def snapshotter = new DefaultValueSnapshotter([], classLoaderHasher)
        def isolatableFactory = new DefaultIsolatableFactory(classLoaderHasher, managedFactoryRegistry)
    
        def "creates isolated string"() {
            expect:
            def original = "abc"
            def isolated = isolatableFactory.isolate(original)
            isolated instanceof StringValueSnapshot
            isolated.isolate().is(original)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top