Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 651 for storeVcs (0.25 sec)

  1. pilot/pkg/xds/pushqueue.go

    )
    
    type PushQueue struct {
    	cond *sync.Cond
    
    	// pending stores all connections in the queue. If the same connection is enqueued again,
    	// the PushRequest will be merged.
    	pending map[*Connection]*model.PushRequest
    
    	// queue maintains ordering of the queue
    	queue []*Connection
    
    	// processing stores all connections that have been Dequeue(), but not MarkDone().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 16 01:37:15 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/experimental/public/function_metadata.h

    #include <memory>
    
    #include "tensorflow/c/experimental/saved_model/public/function_metadata.h"
    
    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // FunctionMetadata stores additional function information, including
    // optional signaturedef feeds/fetches (for TF1-based ConcreteFunctions),
    // a valid function path (for TF2-based ConcreteFunctions), and
    // the types + number of inputs and outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. src/net/sock_bsd.go

    	case "netbsd":
    		// NOTE: NetBSD has no somaxconn-like kernel state so far
    	case "openbsd":
    		n, err = syscall.SysctlUint32("kern.somaxconn")
    	}
    	if n == 0 || err != nil {
    		return syscall.SOMAXCONN
    	}
    	// FreeBSD stores the backlog in a uint16, as does Linux.
    	// Assume the other BSDs do too. Truncate number to avoid wrapping.
    	// See issue 5030.
    	if n > 1<<16-1 {
    		n = 1<<16 - 1
    	}
    	return int(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 918 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

        }
    
        @Override
        public ResolverResults resolveGraph(ResolveContext resolveContext) {
            StoreSet stores = storeFactory.createStoreSet();
    
            BinaryStore oldModelStore = stores.nextBinaryStore();
            Store<TransientConfigurationResults> oldModelCache = stores.oldModelCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/experimental/public/signature_def_function_metadata.h

    #include <memory>
    
    #include "tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h"
    
    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // SignatureDefFunctionMetadata stores additional information on each input
    // and output's names, dtypes, and shape.
    class SignatureDefFunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
     private:
      friend class SignatureDefFunction;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. pkg/kubelet/container/cache.go

    	lock sync.RWMutex
    	// Map that stores the pod statuses.
    	pods map[types.UID]*data
    	// A global timestamp represents how fresh the cached data is. All
    	// cache content is at the least newer than this timestamp. Note that the
    	// timestamp is nil after initialization, and will only become non-nil when
    	// it is ready to serve the cached statuses.
    	timestamp *time.Time
    	// Map that stores the subscriber records.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/CachedStoreFactoryTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.store
    
    import spock.lang.Specification
    
    class CachedStoreFactoryTest extends Specification {
    
        def "stores results"() {
            def factory = new CachedStoreFactory("some cache")
    
            def results1 = new Object()
            def results2 = new Object()
    
            def store1 = factory.createCachedStore("conf1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/net/sock_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"internal/syscall/unix"
    	"syscall"
    )
    
    // Linux stores the backlog as:
    //
    //   - uint16 in kernel version < 4.1,
    //   - uint32 in kernel version >= 4.1
    //
    // Truncate number to avoid wrapping.
    //
    // See issue 5030 and 41470.
    func maxAckBacklog(n int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 03 18:39:45 UTC 2022
    - 993 bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/cluster_scoping_pass.h

    // clustering from losing critical parallelism in the Tensorflow graph, which
    // can incur great performance degradation.
    //
    // This pass must be run before MarkForCompilationPass, as it stores the
    // scoping information that MarkForCompilationPass will need to respect for
    // clustering decision.
    class ClusterScopingPass : public GraphOptimizationPass {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 22 03:15:13 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A property annotated with [KaCachedService] stores a cached IntelliJ project or application service.
     *
     * Retrieving services via [Project.getService][com.intellij.openapi.project.Project.getService] and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top