Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,005 for predates (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    constexpr StringRef kTfQuantSaveV2OpName = "tf_quant__save_save_v2";
    constexpr StringRef kTfQuantSaveReturnOpName = "tf_quant__save_return";
    
    // A pass that creates a new function that wraps the newly created SaveV2 op.
    // The new function's name is "tf_quant__save". The function accepts a single
    // string tensor as argument, which specifies the path to the checkpoint to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/CandidateMethods.java

        public Map<Equivalence.Wrapper<Method>, Collection<Method>> overloadedMethodsNamed(String methodName, Collection<Equivalence.Wrapper<Method>> excludes) {
            return Maps.filterKeys(overloadedMethodsNamed(methodName), Predicates.not(Predicates.in(excludes)));
        }
    
        /**
         * @param methodName Method name
         * @return Overloaded candidate methods named {@literal methodName} indexed by signature equivalence or
         * {@literal null} if none
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * false, the task will be skipped.</p>
         *
         * <p>You may add multiple such predicates. The task is skipped if any of the predicates return false.</p>
         *
         * <p>Typical usage:<code>myTask.onlyIf { isProductionEnvironment() }</code></p>
         *
         * @param onlyIfClosure code to execute to determine if task should be run
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Predicate.java

     * Otherwise, at least reduce <i>explicit</i> dependencies on this type by using lambda expressions
     * or method references instead of classes, leaving your code easier to migrate in the future.
     *
     * <p>The {@link Predicates} class provides common predicates and related utilities.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/FunctionalExplained">the use of {@code Predicate}</a>.
     *
     * @author Kevin Bourrillion
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ExecutionError.java

        super(message);
      }
    
      /**
       * Creates a new instance with the given detail message and cause. Prefer to provide a
       * non-nullable {@code cause}, as many users expect to find one.
       */
      public ExecutionError(@CheckForNull String message, @CheckForNull Error cause) {
        super(message, cause);
      }
    
      /**
       * Creates a new instance with {@code null} as its detail message and the given cause. Prefer to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/config.go

    	}
    }
    
    // defaultListWorkEstimatorConfig creates a new ListWorkEstimatorConfig with default values.
    func defaultListWorkEstimatorConfig() *ListWorkEstimatorConfig {
    	return &ListWorkEstimatorConfig{ObjectsPerSeat: objectsPerSeat}
    }
    
    // defaultMutatingWorkEstimatorConfig creates a new MutatingWorkEstimatorConfig with default values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/apiextensions_client.go

    	}
    	return &ApiextensionsV1Client{client}, nil
    }
    
    // NewForConfigOrDie creates a new ApiextensionsV1Client for the given config and
    // panics if there is an error in the config.
    func NewForConfigOrDie(c *rest.Config) *ApiextensionsV1Client {
    	client, err := NewForConfig(c)
    	if err != nil {
    		panic(err)
    	}
    	return client
    }
    
    // New creates a new ApiextensionsV1Client for the given RESTClient.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertEquals("cool", Iterators.find(iterator, Predicates.equalTo("cool")));
        assertEquals("pants", iterator.next());
      }
    
      public void testFind_lastElement() {
        Iterable<String> list = Lists.newArrayList("cool", "pants");
        Iterator<String> iterator = list.iterator();
        assertEquals("pants", Iterators.find(iterator, Predicates.equalTo("pants")));
        assertFalse(iterator.hasNext());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/kubeconfig.go

    			short: "Generate a kubeconfig file for the scheduler to use",
    			long:  "Generate the kubeconfig file for the scheduler to use and save it to %s file.",
    		},
    	}
    )
    
    // NewKubeConfigPhase creates a kubeadm workflow phase that creates all kubeconfig files necessary to establish the control plane and the admin kubeconfig file.
    func NewKubeConfigPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:  "kubeconfig",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 04:36:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ScriptClassPathResolver.java

    public interface ScriptClassPathResolver {
    
        /**
         * Prepares the given dependencyHandler for script classpath resolution and instrumentation.
         *
         * It returns a resolution context that should be passed to the other methods in this interface.
         */
        ScriptClassPathResolutionContext prepareDependencyHandler(DependencyHandler dependencyHandler);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top