Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 503 for RangeTs (0.17 sec)

  1. src/cmd/trace/main.go

    	mux.Handle("/", traceviewer.MainHandler([]traceviewer.View{
    		{Type: traceviewer.ViewProc, Ranges: ranges},
    		// N.B. Use the same ranges for threads. It takes a long time to compute
    		// the split a second time, but the makeup of the events are similar enough
    		// that this is still a good split.
    		{Type: traceviewer.ViewThread, Ranges: ranges},
    	}))
    
    	// Catapult handlers.
    	mux.Handle("/trace", traceviewer.TraceHandler())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/api/v1/service/util.go

    // If the field is not specified, turn to parse and verify the AnnotationLoadBalancerSourceRangesKey annotation from a service,
    // extracting the source ranges to allow, and if not present returns a default (allow-all) value.
    func GetLoadBalancerSourceRanges(service *v1.Service) (utilnet.IPNetSet, error) {
    	var ipnets utilnet.IPNetSet
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    			<td> {{$Time.String}}</td>
    		{{end}}
    	</tr>
    {{end}}
    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      optional string rule = 1;
    
      // ranges are the allowed ranges of fs groups.  If you would like to force a single
      // fs group then supply a single range with the same start and end. Required for MustRunAs.
      // +optional
      repeated IDRange ranges = 2;
    }
    
    // HostPortRange defines a range of host ports that will be enabled by a policy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/debug/dwarf/open.go

    // the ".debug_abbrev" section.
    func New(abbrev, aranges, frame, info, line, pubnames, ranges, str []byte) (*Data, error) {
    	d := &Data{
    		abbrev:      abbrev,
    		aranges:     aranges,
    		frame:       frame,
    		info:        info,
    		line:        line,
    		pubnames:    pubnames,
    		ranges:      ranges,
    		str:         str,
    		abbrevCache: make(map[uint64]abbrevTable),
    		typeCache:   make(map[Offset]Type),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // using input ranges.
      bool disable_set_input_nodes_quantization_params = false;
    
      // The default ranges can be used when a tensor doesn't have quantization
      // parameters and couldn't be quantized. Used only for latency tests.
      std::pair<std::optional<double>, std::optional<double>> default_ranges;
    
      // A serialized "QuantizationInfo" object to specify value ranges for some of
      // the tensors with known names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/debug/elf/testdata/multiple-code-sections.c

    // Build with:
    // gcc -g multiple-code-sections.c -Wl,--emit-relocs -Wl,--discard-none -Wl,-zmax-page-size=1 -fno-asynchronous-unwind-tables -o go-relocation-test-gcc930-ranges-with-rela-x86-64
    // gcc -g multiple-code-sections.c -Wl,-zmax-page-size=1 -fno-asynchronous-unwind-tables -o go-relocation-test-gcc930-ranges-no-rela-x86-64
    // Strip with:
    // strip --only-keep-debug \
    //       --remove-section=.eh_frame \
    //       --remove-section=.eh_frame_hdr \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 31 18:42:38 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. pkg/api/service/util.go

    // If the field is not specified, turn to parse and verify the AnnotationLoadBalancerSourceRangesKey annotation from a service,
    // extracting the source ranges to allow, and if not present returns a default (allow-all) value.
    func GetLoadBalancerSourceRanges(service *api.Service) (utilnet.IPNetSet, error) {
    	var ipnets utilnet.IPNetSet
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/runtime/mpagecache_test.go

    		var ranges []BitRange
    		start, size := uint(0), uint(0)
    		for i := 0; i < 64; i++ {
    			if bits&(1<<i) != 0 {
    				if size == 0 {
    					start = uint(i) + base
    				}
    				size++
    			} else {
    				if size != 0 {
    					ranges = append(ranges, BitRange{start, size})
    					size = 0
    				}
    			}
    		}
    		if size != 0 {
    			ranges = append(ranges, BitRange{start, size})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  10. pkg/registry/core/limitrange/storage/storage.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/registry/core/limitrange"
    )
    
    // REST implements a RESTStorage for limit ranges.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against limit ranges.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
Back to top