Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 167 for waiters (1.27 sec)

  1. src/runtime/rwmutex.go

    	wLock  mutex    // serializes writers
    	writer muintptr // pending writer waiting for completing readers
    
    	readerCount atomic.Int32 // number of pending readers
    	readerWait  atomic.Int32 // number of departing readers
    
    	readRank lockRank // semantic lock rank for read locking
    }
    
    // Lock ranking an rwmutex has two aspects:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. maven-settings/src/site/apt/index.apt

     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, <<<ToAPiV3()>>> and <<<ToApiV4()>>> transformers, and <<<v4>>> package
         for Merger and v4 Reader and Writers for the Xpp3 XML parser,
    
       * A {{{./settings.html}Descriptor Reference}}
    
       * An {{{https://maven.apache.org/xsd/settings-1.2.0.xsd}XSD}}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation_test.go

    	scenarios := map[string]struct {
    		config   *config.KubeSchedulerConfiguration
    		wantErrs field.ErrorList
    	}{
    		"good": {
    			config: validConfig,
    		},
    		"bad-parallelism-invalid-value": {
    			config: invalidParallelismValue,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "parallelism",
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods.go

    func StaticPodControlPlane(client clientset.Interface, waiter apiclient.Waiter, pathMgr StaticPodPathManager, cfg *kubeadmapi.InitConfiguration, etcdUpgrade, renewCerts bool, oldEtcdClient, newEtcdClient etcdutil.ClusterInterrogator) error {
    	recoverManifests := map[string]string{}
    	var isExternalEtcd bool
    
    	beforePodHashMap, err := waiter.WaitForStaticPodControlPlaneHashes(cfg.NodeRegistration.Name)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		if dryRun {
    			return upgrade.DryRunStaticPodUpgrade(patchesDir, cfg)
    		}
    
    		waiter := apiclient.NewKubeWaiter(data.Client(), data.Cfg().Timeouts.UpgradeManifests.Duration, os.Stdout)
    
    		if err := upgrade.PerformStaticPodUpgrade(client, waiter, cfg, etcdUpgrade, renewCerts, patchesDir); err != nil {
    			return errors.Wrap(err, "couldn't complete the static pod upgrade")
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/net/http/response_test.go

    		in      string
    		wantErr any // nil, err value, bool value, or string substring
    	}
    
    	status := func(s string, wantErr any) testCase {
    		if wantErr == true {
    			wantErr = "malformed HTTP status code"
    		}
    		return testCase{
    			name:    fmt.Sprintf("status %q", s),
    			in:      "HTTP/1.1 " + s + "\r\nFoo: bar\r\n\r\n",
    			wantErr: wantErr,
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/apply.go

    }
    
    // PerformControlPlaneUpgrade actually performs the upgrade procedure for the cluster of your type (self-hosted or static-pod-hosted)
    func PerformControlPlaneUpgrade(flags *applyFlags, client clientset.Interface, waiter apiclient.Waiter, initCfg *kubeadmapi.InitConfiguration, upgradeCfg *kubeadmapi.UpgradeConfiguration) error {
    	// OK, the cluster is hosted using static pods. Upgrade a static-pod hosted cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/net/textproto/reader_test.go

    		r := reader(s)
    		wantErr := true
    		switch {
    		case i >= 0x21 && i <= 0x7e:
    			wantErr = false
    		case i == ' ':
    			wantErr = false
    		case i == '\t':
    			wantErr = false
    		case i >= 0x80 && i <= 0xff:
    			wantErr = false
    		}
    		m, err := r.ReadMIMEHeader()
    		if (err != nil) != wantErr {
    			t.Errorf("ReadMIMEHeader(%q) = %v, %v; want error=%v", s, m, err, wantErr)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/claiminfo_test.go

    		stateDir       string
    		checkpointName string
    		wantErr        bool
    	}{
    		{
    			description:    "successfully created cache",
    			stateDir:       t.TempDir(),
    			checkpointName: "test-checkpoint",
    		},
    		{
    			description: "empty parameters",
    			wantErr:     true,
    		},
    		{
    			description: "empty checkpoint name",
    			stateDir:    t.TempDir(),
    			wantErr:     true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. src/runtime/mstats.go

    	//
    	// This process is why we need a ring buffer of size 3 instead
    	// of 2: one is for the writers, one contains the most recent
    	// data, and the last one is clear so writers can begin writing
    	// to it the moment gen is updated.
    	stats [3]heapStatsDelta
    
    	// gen represents the current index into which writers
    	// are writing, and can take on the value of 0, 1, or 2.
    	gen atomic.Uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top