Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for experts (0.1 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    			// into the controller, which results in syncClaim to be called
    			// shortly (and in the right worker goroutine).
    			// This speeds up binding of provisioned volumes - provisioner saves
    			// only the new PV and it expects that next syncClaim will bind the
    			// claim to it.
    			ctrl.claimQueue.Add(claimToClaimKey(claim))
    			return nil
    		} else if claim.Spec.VolumeName == volume.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		var b strings.Builder
    		io.Copy(&b, r)
    		output := b.String()
    
    		fi1, _ := Stat(strings.TrimSpace(output))
    		fi2, _ := Stat(expect)
    		if !SameFile(fi1, fi2) {
    			t.Errorf("exec %q returned %q wanted %q",
    				strings.Join(append([]string{cmd}, args...), " "), output, expect)
    		}
    		p.Wait()
    	}
    }
    
    func TestStartProcess(t *testing.T) {
    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	// added the Accept-Encoding gzip header. If the Transport
    	// set it, only then do we transparently decode the gzip.
    	addedGzip bool
    
    	// Optional blocking chan for Expect: 100-continue (for send).
    	// If the request has an "Expect: 100-continue" header and
    	// the server responds 100 Continue, readLoop send a value
    	// to writeLoop via this chan.
    	continueCh chan<- struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top