Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 651 for storeVcs (0.11 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/xor.go

    func addXor(dst, src []byte, a, b uint32) {
    	_, _ = src[3], dst[3] // bounds check elimination hint
    	if unaligned {
    		// The compiler should optimize this code into
    		// 32-bit unaligned little endian loads and stores.
    		// TODO: delete once the compiler does a reliably
    		// good job with the generic code below.
    		// See issue #25111 for more details.
    		v := uint32(src[0])
    		v |= uint32(src[1]) << 8
    		v |= uint32(src[2]) << 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 22:52:07 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. pkg/monitoring/base.go

    // limitations under the License.
    
    package monitoring
    
    import (
    	"go.opentelemetry.io/otel/attribute"
    
    	"istio.io/istio/pkg/slices"
    )
    
    type baseMetric struct {
    	name string
    	// attrs stores all attrs for the metrics
    	attrs []attribute.KeyValue
    	rest  Metric
    }
    
    func (f baseMetric) Name() string {
    	return f.name
    }
    
    func (f baseMetric) Increment() {
    	f.rest.Record(1)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental.h

    // -----------------------------------------------------------------------------
    // Core APIs
    // -----------------------------------------------------------------------------
    
    // A TF_ExecutionContext stores knowledge about how to execute an operation.
    // E.g. it could know whether we're in eager mode or graph mode, keeps track
    // of gradient tapes, etc.
    typedef struct TF_ExecutionContext TF_ExecutionContext;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:27:00 UTC 2021
    - 7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/server_shutdown_signal.go

    func ServerShutdownSignalFrom(ctx context.Context) ServerShutdownSignal {
    	ev, _ := ctx.Value(serverShutdownSignalKey).(ServerShutdownSignal)
    	return ev
    }
    
    // WithServerShutdownSignal returns a new context that stores
    // the ServerShutdownSignal interface instance.
    func WithServerShutdownSignal(parent context.Context, window ServerShutdownSignal) context.Context {
    	if ServerShutdownSignalFrom(parent) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/sync/map_bench_test.go

    	benchMap(b, bench{
    		perG: func(b *testing.B, pb *testing.PB, i int, m mapInterface) {
    			var stores, loadsSinceStore int64
    			for ; pb.Next(); i++ {
    				m.Load(i)
    				if loadsSinceStore++; loadsSinceStore > stores {
    					m.LoadOrStore(i, stores)
    					loadsSinceStore = 0
    					stores++
    				}
    			}
    		},
    	})
    }
    
    // BenchmarkAdversarialDelete tests performance when we periodically delete
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/cmd/internal/sys/arch.go

    	MinLC int
    
    	// Alignment is maximum alignment required by the architecture
    	// for any (compiler-generated) load or store instruction.
    	// Loads or stores smaller than Alignment must be naturally aligned.
    	// Loads or stores larger than Alignment need only be Alignment-aligned.
    	Alignment int8
    
    	// CanMergeLoads reports whether the backend optimization passes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/apis/apps/register.go

    limitations under the License.
    */
    
    package apps
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/kubernetes/pkg/apis/autoscaling"
    )
    
    var (
    	// SchemeBuilder stores functions to add things to a scheme.
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme applies all stored functions t oa scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 22 19:26:49 UTC 2019
    - 2K bytes
    - Viewed (0)
Back to top