Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for changedTo (0.17 sec)

  1. cmd/bucket-replication.go

    // checkOld can be set to an expected value.
    // If the worker count changed
    func (p *ReplicationPool) ResizeWorkers(n, checkOld int) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    
    	if (checkOld > 0 && len(p.workers) != checkOld) || n == len(p.workers) || n < 1 {
    		// Either already satisfied or worker count changed while we waited for the lock.
    		return
    	}
    	for len(p.workers) < n {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	}
    
    	c := ctxtz{ctxt: ctxt, newprog: newprog, cursym: cursym, autosize: int32(p.To.Offset)}
    
    	buffer := make([]byte, 0)
    	changed := true
    	loop := 0
    	nrelocs0 := len(c.cursym.R)
    	for changed {
    		if loop > 100 {
    			c.ctxt.Diag("stuck in spanz loop")
    			break
    		}
    		changed = false
    		buffer = buffer[:0]
    		for i := range c.cursym.R[nrelocs0:] {
    			c.cursym.R[nrelocs0+i] = obj.Reloc{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

         * performed at the front of each bin. This makes it easy to check changes, and also fast to
         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    		},
    		"suspending a deleted job": {
    			// We would normally expect the active pods to be deleted (see a few test
    			// cases above), but since this job is being deleted, we don't expect
    			// anything changed here from before the job was suspended. The
    			// JobSuspended condition is also missing.
    			suspend:            true,
    			deleting:           true,
    			parallelism:        2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "type":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "type":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    				"pod", klog.KObj(pod))
    		}
    	}
    
    	// Generate final API pod status with pod and status manager status
    	apiPodStatus := kl.generateAPIPodStatus(pod, podStatus, false)
    	// The pod IP may be changed in generateAPIPodStatus if the pod is using host network. (See #24576)
    	// TODO(random-liu): After writing pod spec into container labels, check whether pod is using host network, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/net/http/server.go

    //go:linkname newBufioReader
    func newBufioReader(r io.Reader) *bufio.Reader {
    	if v := bufioReaderPool.Get(); v != nil {
    		br := v.(*bufio.Reader)
    		br.Reset(r)
    		return br
    	}
    	// Note: if this reader size is ever changed, update
    	// TestHandlerBodyClose's assumptions.
    	return bufio.NewReader(r)
    }
    
    // putBufioReader should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/reflect/value.go

    // If CanAddr returns false, calling [Value.Addr] will panic.
    func (v Value) CanAddr() bool {
    	return v.flag&flagAddr != 0
    }
    
    // CanSet reports whether the value of v can be changed.
    // A [Value] can be changed only if it is addressable and was not
    // obtained by the use of unexported struct fields.
    // If CanSet returns false, calling [Value.Set] or any type-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    		}
    	}
    }
    
    func TestAddAllocatableThresholds(t *testing.T) {
    	// About func addAllocatableThresholds, only someone threshold that "Signal" is "memory.available" and "GracePeriod" is 0,
    	// append this threshold(changed "Signal" to "allocatableMemory.available") to thresholds
    	testCases := map[string]struct {
    		thresholds []evictionapi.Threshold
    		expected   []evictionapi.Threshold
    	}{
    		"non-memory-signal": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top