Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for BarTest (0.12 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit.go

    		handle:                          h,
    		resourceAllocationScorer:        *scorePlugin(args),
    	}, nil
    }
    
    // computePodResourceRequest returns a framework.Resource that covers the largest
    // width in each resource dimension. Because init-containers run sequentially, we collect
    // the max in each dimension iteratively. In contrast, we sum the resource vectors for
    // regular containers since they run simultaneously.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        display(xscale, pos, neg, displayList);
      }
    
      // renderStacks creates boxes with top-left at x,y with children drawn as
      // nested stacks (below or above based on the sign of direction).
      // Returns the largest y coordinate filled.
      function renderStacks(depth, xscale, x, y, places, direction) {
        // Example: suppose we are drawing the following stacks:
        //   a->b->c
        //   a->b->d
        //   a->e->f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/runtime/heapdump.go

    				dumpfinalizer(p, spf.fn, spf.fint, spf.ot)
    			}
    		}
    	}
    
    	// Finalizer queue
    	iterate_finq(finq_callback)
    }
    
    // Bit vector of free marks.
    // Needs to be as big as the largest number of objects per span.
    var freemark [_PageSize / 8]bool
    
    func dumpobjs() {
    	// To protect mheap_.allspans.
    	assertWorldStopped()
    
    	for _, s := range mheap_.allspans {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/math/big/float_test.go

    		{"0x.0000020p-126", math.SmallestNonzeroFloat32, Exact},
    		{"0x.8p-148", math.SmallestNonzeroFloat32, Exact},
    		{"1p-149", math.SmallestNonzeroFloat32, Exact},
    		{"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
    
    		// special denormal cases (see issues 14553, 14651)
    		{"0x0.0000001p-126", math.Float32frombits(0x00000000), Below}, // underflow to zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    		// https://github.com/etcd-io/etcd/blob/release-3.4/embed/config.go#L56.
    		// A request body might be encoded in json, and is converted to
    		// proto when persisted in etcd, so we allow 2x as the largest size
    		// increase the "copy" operations in a json patch may cause.
    		JSONPatchMaxCopyBytes: int64(3 * 1024 * 1024),
    		// 1.5MB is the recommended client request size in byte
    		// the etcd server should accept. See
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. src/time/time.go

    func (t Time) YearDay() int {
    	_, _, _, yday := t.date(false)
    	return yday + 1
    }
    
    // A Duration represents the elapsed time between two instants
    // as an int64 nanosecond count. The representation limits the
    // largest representable duration to approximately 290 years.
    type Duration int64
    
    const (
    	minDuration Duration = -1 << 63
    	maxDuration Duration = 1<<63 - 1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/predicates.go

    		case UntypedFloat:
    			return Typ[Float64]
    		case UntypedComplex:
    			return Typ[Complex128]
    		case UntypedString:
    			return Typ[String]
    		}
    	}
    	return t
    }
    
    // maxType returns the "largest" type that encompasses both x and y.
    // If x and y are different untyped numeric types, the result is the type of x or y
    // that appears later in this list: integer, rune, floating-point, complex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/go/types/predicates.go

    		case UntypedFloat:
    			return Typ[Float64]
    		case UntypedComplex:
    			return Typ[Complex128]
    		case UntypedString:
    			return Typ[String]
    		}
    	}
    	return t
    }
    
    // maxType returns the "largest" type that encompasses both x and y.
    // If x and y are different untyped numeric types, the result is the type of x or y
    // that appears later in this list: integer, rune, floating-point, complex.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/time/time_test.go

    	{"-9223372036854775.808us", -1 << 63 * Nanosecond},
    	{"-9223372036s854ms775us808ns", -1 << 63 * Nanosecond},
    	// largest negative value
    	{"-9223372036854775808ns", -1 << 63 * Nanosecond},
    	// largest negative round trip value, see https://golang.org/issue/48629
    	{"-2562047h47m16.854775808s", -1 << 63 * Nanosecond},
    	// huge string; issue 15011.
    	{"0.100000000000000000000h", 6 * Minute},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/func.go

    	// function literal numbering (e.g., runtime/trace_test.TestTraceSymbolize.func11).
    	funcLitGen  int32
    	rangeLitGen int32
    	goDeferGen  int32
    
    	Label int32 // largest auto-generated label in this function
    
    	Endlineno src.XPos
    	WBPos     src.XPos // position of first write barrier; see SetWBPos
    
    	Pragma PragmaFlag // go:xxx function annotations
    
    	flags bitset16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top