Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for holds (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	DefaultCompactInterval      = 5 * time.Minute
    	DefaultDBMetricPollInterval = 30 * time.Second
    	DefaultHealthcheckTimeout   = 2 * time.Second
    	DefaultReadinessTimeout     = 2 * time.Second
    )
    
    // TransportConfig holds all connection related info,  i.e. equal TransportConfig means equal servers we talk to.
    type TransportConfig struct {
    	// ServerList is the list of storage servers to connect with.
    	ServerList []string
    	// TLS credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/issues_test.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file holds test cases for individual issues
    // for which there is (currently) no better location.
    
    package syntax
    
    import (
    	"strings"
    	"testing"
    )
    
    func TestIssue67866(t *testing.T) {
    	var tests = []string{
    		"package p; var _ = T{@0: 0}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/os/exec.go

    	//
    	// In modeHandle, the lower bits also contain a reference count for the
    	// handle field.
    	//
    	// The Process itself initially holds 1 persistent reference. Any
    	// operation that uses the handle with a system call temporarily holds
    	// an additional transient reference. This prevents the handle from
    	// being closed prematurely, which could result in the OS allocating a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

    class ConfigurationCacheClassLoaderCachingIntegrationTest extends PersistentBuildProcessIntegrationTest {
    
        def "reuses cached ClassLoaders"() {
    
            given: 'a Task that holds some static data'
            File staticDataLib = file("lib/StaticData.jar").tap {
                parentFile.mkdirs()
            }
            jarWithClasses(
                staticDataLib,
                StaticData: """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/sync/cond.go

    	runtime_notifyListNotifyOne(&c.notify)
    }
    
    // Broadcast wakes all goroutines waiting on c.
    //
    // It is allowed but not required for the caller to hold c.L
    // during the call.
    func (c *Cond) Broadcast() {
    	c.checker.check()
    	runtime_notifyListNotifyAll(&c.notify)
    }
    
    // copyChecker holds back pointer to itself to detect object copying.
    type copyChecker uintptr
    
    func (c *copyChecker) check() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    const (
    	errInvalid = "invalid argument"
    	errExist   = "file already exists"
    )
    
    // clientCertAuth struct holds info required to build a client certificate to provide authentication info in a kubeconfig object
    type clientCertAuth struct {
    	CAKey         crypto.Signer
    	Organizations []string
    }
    
    // tokenAuth struct holds info required to use a token to provide authentication info in a kubeconfig object
    type tokenAuth struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types.go

    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID `json:"succeeded,omitempty" protobuf:"bytes,1,rep,name=succeeded,casttype=k8s.io/apimachinery/pkg/types.UID"`
    
    	// failed holds UIDs of failed Pods.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    // has two sub queues and a additional data structure, namely: activeQ,
    // backoffQ and unschedulablePods.
    //   - activeQ holds pods that are being considered for scheduling.
    //   - backoffQ holds pods that moved from unschedulablePods and will move to
    //     activeQ when their backoff periods complete.
    //   - unschedulablePods holds pods that were already attempted for scheduling and
    //     are currently determined to be unschedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    	return
    }
    
    func (w *timeIncrementingWorkers) PauseWorkers(uids ...types.UID) {
    	w.lock.Lock()
    	defer w.lock.Unlock()
    	if w.holds == nil {
    		w.holds = make(map[types.UID]chan struct{})
    	}
    	for _, uid := range uids {
    		if _, ok := w.holds[uid]; !ok {
    			w.holds[uid] = make(chan struct{})
    		}
    	}
    }
    
    func (w *timeIncrementingWorkers) ReleaseWorkers(uids ...types.UID) {
    	w.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

            double z = a.addAndGet(y);
            assertBitEquals(x + y, z);
            assertBitEquals(x + y, a.get());
          }
        }
      }
    
      /** a deserialized serialized atomic holds same value */
      public void testSerialization() throws Exception {
        AtomicDouble a = new AtomicDouble();
        AtomicDouble b = serialClone(a);
        assertNotSame(a, b);
        a.set(-22.0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top