Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 997 for registerKey (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

     public:
      static StringRef getDialectNamespace() { return "tf_executor"; }
      explicit TensorFlowExecutorDialect(MLIRContext *context);
    
      // Parses a type registered to this dialect.
      Type parseType(DialectAsmParser &parser) const override;
    
      // Prints a type registered to this dialect.
      void printType(Type type, DialectAsmPrinter &os) const override;
    };
    
    // The Control type is a token-like value that models control dependencies from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // PersistentVolumeBinderControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. docs/en/overrides/partials/copyright.html

    <div class="md-copyright">
        <div class="md-copyright__highlight">
            The FastAPI trademark is owned by <a href="https://tiangolo.com" target="_blank">@tiangolo</a> and is registered in the US and across other regions
        </div>
        {% if not config.extra.generator == false %}
        Made with
        <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
            Material for MkDocs
        </a>
        {% endif %}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 450 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistrySpec.groovy

            registry.add(generator("desc1"))
    
            then:
            def e = thrown(GradleException)
            e.message == "ProjectDescriptor with ID 'desc1' already registered."
        }
    
        def "getAllTypes lists all registered types"() {
            setup:
            registry.add(generator("desc1"))
            registry.add(generator("desc2"))
            registry.add(generator("desc3"))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/services/ServiceReference.java

     * there is no need to explicitly declare the association between the task and the service;
     * also, if you provide a service name to the annotation, and a shared build service is
     * registered with that name, it will be automatically assigned to the property when the
     * task is created.
     * </p>
     * <p>
     * It is an error to apply this annotation to a property whose type is not a subtype of {@link BuildService}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 15:30:24 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/work/AsyncWorkTracker.java

        /**
         * Blocks waiting for the completion of all items of asynchronous work associated with the provided build operation.
         * Only waits for work that has been registered at the moment the method is called.  In the event that there are failures in
         * the asynchronous work, a {@link org.gradle.internal.exceptions.MultiCauseException} will be thrown with any exceptions
         * thrown.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    // watches similar if they have the same resourceType, namespace
    // and name. We ignore selectors as they have to be evaluated
    // when processing an even anyway.
    //
    // TODO: For now we only track the number of watches registered
    // in our kube-apiserver. Eventually we should consider sharing
    // this information with other kube-apiserver as described in the
    // KEP, but this isn't part of the first version.
    type watchIdentifier struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/vcs/SourceControl.java

         */
        VcsMappings getVcsMappings();
    
        /**
         * Registers a Git repository that contains some components that should be used as source dependencies.
         *
         * <p>A Git repository can safely be registered multiple times.</p>
         *
         * @param url The URL of the Git repository.
         * @return An object that can be used to configure the details of the repository.
         * @since 4.10
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:23 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

         */
        void dir(Object dir);
    
        /**
         * Returns all dirs registered with #dir method.
         * Each file is resolved as {@link org.gradle.api.Project#file(Object)}
         * <p>
         * See example at {@link SourceSetOutput}
         *
         * @return a new instance of registered dirs with resolved files
         */
        FileCollection getDirs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

                    "Transfer listener is registered before test");
            wagonManager.getArtifact(artifact, repo, transferListener, false);
            assertFalse(
                    wagon.getTransferEventSupport().hasTransferListener(transferListener),
                    "Transfer listener still registered after getArtifact");
    
            /* putArtifact */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top