Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for Positive (0.14 sec)

  1. pkg/apis/storage/validation/validation_test.go

    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    				Allocatable:  &storage.VolumeNodeResources{Count: utilpointer.Int32(0)},
    			}},
    		},
    	}, {
    		// Volume limits with positive number
    		ObjectMeta: metav1.ObjectMeta{Name: "foo11"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io.kubernetes.storage.csi.driver",
    				NodeID:       nodeID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  2. src/time/format.go

    	for ; i < len(s); i++ {
    		c := s[i]
    		if c < '0' || c > '9' {
    			break
    		}
    		if overflow {
    			continue
    		}
    		if x > (1<<63-1)/10 {
    			// It's possible for overflow to give a positive number, so take care.
    			overflow = true
    			continue
    		}
    		y := x*10 + uint64(c) - '0'
    		if y > 1<<63 {
    			overflow = true
    			continue
    		}
    		x = y
    		scale *= 10
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // skip is the number of frames to omit from the traceback associated with the event.
    // The traceback will be recorded from the stack of the goroutine associated with the current m.
    // skip should be positive if this event is recorded from the current stack
    // (e.g. when this is not called from a system stack)
    func saveblockevent(cycles, rate int64, skip int, which bucketType) {
    	if debug.profstackdepth == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    	// won't barge over new memory becoming available to scavenge. Furthermore, this ensures
    	// that some future caller of find *must* observe the new high index. That caller
    	// (or any other racing with it), then makes searchAddr positive before continuing, bringing
    	// us back to our monotonically decreasing steady-state.
    	//
    	// A pageAlloc lock serializes updates between min, max, and searchAddr, so abs(searchAddr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    				expectSuccess := c.ExpectSuccess(src, opt)
    				expectMTLS := c.ExpectMTLS(src, opt)
    
    				var tpe string
    				if expectSuccess {
    					tpe = "positive"
    					opt.Check = check.And(
    						check.OK(),
    						check.ReachedTargetClusters(t))
    					if expectMTLS {
    						opt.Check = check.And(opt.Check, check.MTLSForHTTP())
    					}
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		// The Go compiler does not update msan for changes to the
    		// stack. It is possible that the stack will remain
    		// uninitialized, and then later be used in a way that is
    		// visible to msan, possibly leading to a false positive.
    		// Mark the stack space as written, to avoid this problem.
    		// See issue 26209.
    		fmt.Fprintf(fgcc, "\t_cgo_msan_write(&_cgo_a->r, sizeof(_cgo_a->r));\n")
    	}
    	if n.AddError {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    		} else {
    			r = appendNegatedTable(r, tab)
    		}
    	} else {
    		// Merge and clean tab and fold in a temporary buffer.
    		// This is necessary for the negative case and just tidy
    		// for the positive case.
    		tmp := p.tmpClass[:0]
    		tmp = appendTable(tmp, tab)
    		tmp = appendTable(tmp, fold)
    		p.tmpClass = tmp
    		tmp = cleanClass(&p.tmpClass)
    		if sign > 0 {
    			r = appendClass(r, tmp)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param otherProject The project to compare the nesting level with.
         * @return a negative integer, zero, or a positive integer as this project has a nesting level less than, equal to,
         *         or greater than the specified object.
         * @see #getDepth()
         */
        int depthCompare(Project otherProject);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    input, the values are normalized one image at a time to fit in the range
    `[0, 255]`.  `uint8` values are unchanged.  The op uses two different
    normalization algorithms:
    
    *  If the input values are all positive, they are rescaled so the largest one
       is 255.
    
    *  If any input value is negative, the values are shifted so input value 0.0
       is at 127.  They are then rescaled so that either the smallest value is 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    func eventually(t test.Failer, cond func() bool) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		if !cond() {
    			return fmt.Errorf("failed to get positive condition")
    		}
    		return nil
    	}, retry.Timeout(time.Second), retry.Delay(time.Millisecond*10))
    }
    
    func TestServices(t *testing.T) {
    	networksWatcher := mesh.NewFixedNetworksWatcher(&meshconfig.MeshNetworks{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top