Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 422 for strref (0.09 sec)

  1. tensorflow/cc/saved_model/loader.h

    /// Loads a SavedModel from the specified export directory. The MetaGraphDef
    /// to be loaded is identified by the supplied tags, corresponding exactly to
    /// the set of tags used at SavedModel build time. Stores a SavedModel bundle in
    /// *bundle with a session and the requested MetaGraphDef, if found.
    ///
    /// NOTE: Prefer the overload that takes a SavedModelBundleLite* in new code.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/HashingClassLoaderFactory.java

    package org.gradle.internal.classloader;
    
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ClassLoaderFactory} that also stores the hash of each created classloader which is later retrievable via {@link #getClassLoaderClasspathHash(ClassLoader)}.
     */
    public interface HashingClassLoaderFactory extends ClassLoaderFactory {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. plugin/pkg/admission/eventratelimit/cache.go

    type cache interface {
    	// get the rate limiter associated with the specified key
    	get(key interface{}) flowcontrol.RateLimiter
    }
    
    // singleCache is a cache that only stores a single, constant item
    type singleCache struct {
    	// the single rate limiter held by the cache
    	rateLimiter flowcontrol.RateLimiter
    }
    
    func (c *singleCache) get(key interface{}) flowcontrol.RateLimiter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 02:31:37 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_builder.go

    // declare one in each package that will have generated deep copy or conversion
    // functions.
    type SchemeBuilder []func(*Scheme) error
    
    // AddToScheme applies all the stored functions to the scheme. A non-nil error
    // indicates that one function failed and the attempt was abandoned.
    func (sb *SchemeBuilder) AddToScheme(s *Scheme) error {
    	for _, f := range *sb {
    		if err := f(s); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  5. pkg/adsc/adsc.go

    		oldCfg := a.Store.Get(newCfg.GroupVersionKind, newCfg.Name, newCfg.Namespace)
    
    		if oldCfg == nil {
    			if _, err = a.Store.Create(*newCfg); err != nil {
    				adscLog.Warnf("Error adding a new resource to the store %v", err)
    				continue
    			}
    		} else if oldCfg.ResourceVersion != newCfg.ResourceVersion || newCfg.ResourceVersion == "" {
    			// update the store only when resource version differs or unset.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  6. pkg/apis/coordination/register.go

    }
    
    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 23 04:20:49 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSettings.java

     * limitations under the License.
     */
    package org.gradle.security.internal.gnupg;
    
    import org.gradle.internal.os.OperatingSystem;
    
    import java.io.File;
    
    /**
     * Stores the settings for invoking gnupg.
     *
     * @since 4.5
     */
    public class GnupgSettings {
    
        private String executable;
        private File homeDir;
        private File optionsFile;
        private String keyName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/scheduling/v1/register.go

    	// SchemeBuilder is a collection of functions that add things to a scheme.
    	SchemeBuilder      = runtime.NewSchemeBuilder(addKnownTypes)
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 22 18:51:13 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_s390x.go

    		}
    	}
    	return true
    }
    
    // facility is a bit index for the named facility.
    type facility uint8
    
    const (
    	// mandatory facilities
    	zarch  facility = 1  // z architecture mode is active
    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    	dfp    facility = 42 // decimal-floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/types.go

    	SetCgroupConfig(name CgroupName, resource v1.ResourceName, resourceConfig *ResourceConfig) error
    }
    
    // QOSContainersInfo stores the names of containers per qos
    type QOSContainersInfo struct {
    	Guaranteed CgroupName
    	BestEffort CgroupName
    	Burstable  CgroupName
    }
    
    // PodContainerManager stores and manages pod level containers
    // The Pod workers interact with the PodContainerManager to create and destroy
    // containers for the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top