Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,001 for registered_ (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. test/fixedbugs/bug500.go

    // initialized to a slice of a value containing pointers.  The initial
    // backing array for the slice was allocated in the .data section,
    // which is fine, but the backing array was not registered as a GC
    // root.
    
    package main
    
    import (
    	"runtime"
    )
    
    type s struct {
    	str string
    }
    
    var a = []struct {
    	str string
    }{
    	{""},
    }
    
    var b = "b"
    var c = "c"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 21:29:37 UTC 2016
    - 694 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/eventbus/Subscriber.java

     * events to it.
     *
     * <p>Two subscribers are equivalent when they refer to the same method on the same object (not
     * class). This property is used to ensure that no subscriber method is registered more than once.
     *
     * @author Colin Decker
     */
    @ElementTypesAreNonnullByDefault
    class Subscriber {
    
      /** Creates a {@code Subscriber} for {@code method} on {@code listener}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
Back to top