Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 997 for registerKey (0.23 sec)

  1. src/archive/zip/register.go

    		panic("decompressor already registered")
    	}
    }
    
    // RegisterCompressor registers custom compressors for a specified method ID.
    // The common methods [Store] and [Deflate] are built in.
    func RegisterCompressor(method uint16, comp Compressor) {
    	if _, dup := compressors.LoadOrStore(method, comp); dup {
    		panic("compressor already registered")
    	}
    }
    
    func compressor(method uint16) Compressor {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/operationexecutor/operation_executor.go

    // still succeed if the plugin is already registered, etc.). However,
    // they depend on the plugin handlers (for each plugin type) to implement this
    // behavior.
    //
    // Once an operation completes successfully, the actualStateOfWorld is updated
    // to indicate the plugin is registered/unregistered.
    //
    // Once the operation is started, since it is executed asynchronously,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. pkg/controller/replication/config/v1alpha1/register.go

    	SchemeBuilder runtime.SchemeBuilder
    	// localSchemeBuilder extends the SchemeBuilder instance with the external types. In this package,
    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/ephemeral/config/v1alpha1/register.go

    	SchemeBuilder runtime.SchemeBuilder
    	// localSchemeBuilder extends the SchemeBuilder instance with the external types. In this package,
    	// defaulting and conversion init funcs are registered as well.
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = localSchemeBuilder.AddToScheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/grad_testutil.h

    #include <vector>
    
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/framework/scope.h"
    
    namespace tensorflow {
    namespace test {
    
    /// Calls the gradient function registered for 'op', adding gradient operations
    /// to the graph associated with 'scope'. Gradient outputs for each 'op' input
    /// are returned in 'grad_outputs'.
    Status CallGradFunction(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 17 09:17:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/README.md

    # Experimental C++ Ops
    
    The C++ files in this directory (***\*_ops.h*** and ***\*_ops.cc***) are
    autogenerated from the registered Op and API definitions.
    
    To regenerate them, run the script in this directory, `update_cpp_ops.sh`, with
    no arguments. This script will overwrite the existing ops in-place at
    ***tensorflow/c/experimental/ops/\*_ops.{cc,h}***.
    
    Run this `update_cpp_ops.sh` script when Op definitions change in the registry.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 17:21:01 UTC 2021
    - 993 bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

        }
    
        def "fail when multiple source sets are registered with the same name"() {
            buildFile << """
    model {
        components {
            sampleLib(SampleLibrary) {
                binaries {
                    bin(SampleBinary) {
                        sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceProvider.java

    import org.gradle.internal.state.Managed;
    
    import javax.annotation.Nonnull;
    
    import static org.gradle.internal.Cast.uncheckedCast;
    
    /**
     * A provider for build services that are registered or consumed.
     */
    @SuppressWarnings("rawtypes")
    public abstract class BuildServiceProvider<T extends BuildService<P>, P extends BuildServiceParameters> extends AbstractMinimalProvider<T> implements Managed {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InjectAnnotationHandler.java

    package org.gradle.internal.instantiation;
    
    import java.lang.annotation.Annotation;
    
    /**
     * Responsible for defining the behaviour of a particular annotation used for injection.
     *
     * <p>Implementations must be registered as global scoped services.</p>
     */
    public interface InjectAnnotationHandler {
        Class<? extends Annotation> getAnnotationType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 972 bytes
    - Viewed (0)
Back to top