Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 997 for registerKey (0.14 sec)

  1. tensorflow/compiler/mlir/tfr/utils/utils.h

    //   tf__concat_v2 => tf.ConcatV2
    std::string GetTFOpName(StringRef compose_func_name);
    
    // Validate the attributes of 'src' is either contained in the registered
    // attribute sets or in the allowed list.
    LogicalResult ValidateAttrs(Operation* src, const StringSet<>& registered);
    
    // Copies all the allowed attributes in 'src' to 'dst'. The copy failed if the
    // 'dst' has the attribute. Return a failure if there are any attributes are not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/eventbus/EventBus.java

       */
      public void register(Object object) {
        subscribers.register(object);
      }
    
      /**
       * Unregisters all subscriber methods on a registered {@code object}.
       *
       * @param object object whose subscriber methods should be unregistered.
       * @throws IllegalArgumentException if the object was not previously registered.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            this.strict = false;
            return this;
        }
    
        /**
         * Providing a scope makes the resulting {@link ServiceRegistry}
         * validate all registered services for being annotated with the given scope.
         * <p>
         * All registered services require the {@link org.gradle.internal.service.scopes.ServiceScope @ServiceScope}
         * annotation to be present and contain the given scope.
         *
         * @see #scope(Class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/SettingsSchemaAccessorsIntegrationTest.kt

            )
        }
    
        private
        fun withPluginSourceFile(fileName: String, text: String) {
            withFile("plugins/src/main/kotlin/$fileName", text)
        }
    
        @Test
        fun `can access extension registered by included build plugin`() {
            // when:
            val result = build("ok")
    
            // then:
            result.assertOutputContains("It's 42!")
    
            // when: plugin changes in an incompatible way
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_activity_listener.h

    namespace tensorflow {
    // Broadcast `auto_clustering_activity` to all the registered listeners.
    Status BroadcastXlaActivity(XlaAutoClusteringActivity auto_clustering_activity);
    
    // Broadcast `jit_compilation_activity` to all the registered listeners.
    Status BroadcastXlaActivity(XlaJitCompilationActivity jit_compilation_activity);
    
    // Broadcast `jit_compilation_activity` to all the registered listeners.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SignOperation.java

            return this;
        }
    
        /**
         * The registered signatures.
         */
        public List<Signature> getSignatures() {
            return new ArrayList<Signature>(signatures);
        }
    
        /**
         * Returns the single registered signature.
         *
         * @return The signature.
         * @throws IllegalStateException if there is not exactly one registered signature.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

            return String.format(
                "The service implementation '%s' is registered in the '%s' scope but does not declare it explicitly.\n" +
                    "The implementation appears to serve %s.\n" +
                    "Try the following:\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. pkg/kubelet/configmap/configmap_manager.go

    	}
    }
    
    // NewWatchingConfigMapManager creates a manager that keeps a cache of all configmaps
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pkg/kubelet/secret/secret_manager.go

    	}
    }
    
    // NewWatchingSecretManager creates a manager that keeps a cache of all secrets
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/configuration/internal/ExecuteListenerBuildOperationType.java

        public interface Details {
    
            /**
             * The application ID of the script or plugin that registered the listener.
             *
             * @see org.gradle.api.internal.plugins.ApplyPluginBuildOperationType.Details#getApplicationId()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top