Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,005 for predates (0.45 sec)

  1. operator/pkg/version/version.go

    type Version struct {
    	PatchVersion
    	Suffix string
    }
    
    // NewMajorVersion creates an initialized MajorVersion struct.
    func NewMajorVersion(major uint32) MajorVersion {
    	return MajorVersion{
    		Major: major,
    	}
    }
    
    // NewMinorVersion creates an initialized MinorVersion struct.
    func NewMinorVersion(major, minor uint32) MinorVersion {
    	return MinorVersion{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    // (path) and doesn't actually creates the file.
    absl::StatusOr<std::string> GetLocalTmpFileName(tsl::Env* env);
    
    // Generates a unique local tmp file name. This function only generates the name
    // (path) and doesn't actually creates the file. The default environment
    // `tsl::Env::Default` is used to generate the name.
    absl::StatusOr<std::string> GetLocalTmpFileName();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

    namespace quant {
    namespace {
    
    using ::mlir::tf_saved_model::GetInitializerFunction;
    using ::mlir::tf_saved_model::kTfSavedModelIndexPathAttr;
    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // This pass creates a RestoreV2 op in the initializer function with
    // type "restore_op" that initializes variables from checkpoint. It finds
    // tf.AssignVariableOp(tf.VarHandleOp, tf.Const) patterns in the initializer
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstanceFactory.java

         */
        boolean serviceInjectionTriggeredByAnnotation(Class<? extends Annotation> injectAnnotation);
    
        /**
         * Creates a new instance from the given services and parameters.
         */
        T newInstance(ServiceLookup services, Object... params);
    
        /**
         * Creates a new instance from the given parameters and the default services.
         */
        T newInstance(Object... params);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionValueNotationParserFactorySpec.groovy

        def "creates notationparser for handling strings"(){
            given:
            OptionValueNotationParserFactory factory = new OptionValueNotationParserFactory()
            when:
            def parser = factory.toComposite(String.class);
            then:
            parser.parseNotation("somestring") == "somestring"
        }
    
        def "creates notationparser for handling handles enums"(){
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 09:28:44 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.h

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace TFTPU {
    
    // Creates a pass that rewrites `tf_device.launch_func` on TPUs into TPU runtime
    // ops.
    std::unique_ptr<mlir::OperationPass<mlir::ModuleOp>> CreateTPURewritePass(
        llvm::StringRef module_name = llvm::StringRef());
    
    // Creates a pass that adds ops which perform formatting on variables at
    // run-time according to compilation result.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

    import java.util.function.BiFunction;
    
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.assignableTo;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.implement;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.resideInAnyPackage;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.type;
    import static com.tngtech.archunit.lang.conditions.ArchConditions.not;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessFactory.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.api.Action;
    
    public interface WorkerProcessFactory {
        /**
         * Creates a builder for workers that will run the given action. The worker action is serialized to the worker process and executed.
         *
         * <p>The worker process is not started until {@link WorkerProcess#start()} is called.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap.go

    	clientset "k8s.io/client-go/kubernetes"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    // AllowBootstrapTokensToPostCSRs creates RBAC rules in a way the makes Node Bootstrap Tokens able to post CSRs
    func AllowBootstrapTokensToPostCSRs(client clientset.Interface) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 10:49:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/clientset.go

    	if err != nil {
    		return nil, err
    	}
    	return &cs, nil
    }
    
    // NewForConfigOrDie creates a new Clientset for the given config and
    // panics if there is an error in the config.
    func NewForConfigOrDie(c *rest.Config) *Clientset {
    	cs, err := NewForConfig(c)
    	if err != nil {
    		panic(err)
    	}
    	return cs
    }
    
    // New creates a new Clientset for the given RESTClient.
    func New(c rest.Interface) *Clientset {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 18:26:20 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top