Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for Boundaries (0.29 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller.go

    		for _, i := range instances {
    			// Insert all instances for this IP for services within the same namespace. This ensures we
    			// match Kubernetes logic where Services do not cross namespace boundaries and avoids
    			// possibility of other namespaces inserting service instances into namespaces they do not
    			// control.
    			if node.Metadata.Namespace == "" || i.Service.Attributes.Namespace == node.Metadata.Namespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/metrics.go

    	// ref: https://github.com/kubernetes/community/blob/master/sig-scalability/slos/pod_startup_latency.md
    	//
    	// The histogram bucket boundaries for pod startup latency metrics, measured in seconds. These are hand-picked
    	// so as to be roughly exponential but still round numbers in everyday units. This is to minimise the number
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

    table ReadVariableOptions {
    }
    
    table AssignVariableOptions {
    }
    
    table RandomOptions {
      seed: long;
      seed2: long;
    }
    
    table BucketizeOptions {
      boundaries: [float];  // The bucket boundaries.
    }
    
    table GeluOptions {
      approximate: bool;
    }
    
    table DynamicUpdateSliceOptions {
    }
    
    table UnsortedSegmentProdOptions {
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. src/runtime/string.go

    	// actual system page size is larger than this value.
    	const pageSize = 4096
    
    	offset := 0
    	ptr := unsafe.Pointer(s)
    	// IndexByteString uses wide reads, so we need to be careful
    	// with page boundaries. Call IndexByteString on
    	// [ptr, endOfPage) interval.
    	safeLen := int(pageSize - uintptr(ptr)%pageSize)
    
    	for {
    		t := *(*string)(unsafe.Pointer(&stringStruct{ptr, safeLen}))
    		// Check one page at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableCollection.java

     *       unnecessary; for example, {@code copyOf(copyOf(anArrayList))} should copy the data only
     *       once. This reduces the expense of habitually making defensive copies at API boundaries.
     *       However, the precise conditions for skipping the copy operation are undefined.
     *   <li><b>Warning:</b> a view collection such as {@link ImmutableMap#keySet} or {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/runtime/race.go

    		throw("raceinit: race build must use cgo")
    	}
    
    	racecall(&__tsan_init, uintptr(unsafe.Pointer(&gctx)), uintptr(unsafe.Pointer(&pctx)), abi.FuncPCABI0(racecallbackthunk), 0)
    
    	// Round data segment to page boundaries, because it's used in mmap().
    	start := ^uintptr(0)
    	end := uintptr(0)
    	if start > firstmoduledata.noptrdata {
    		start = firstmoduledata.noptrdata
    	}
    	if start > firstmoduledata.data {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       unnecessary; for example, {@code copyOf(copyOf(anArrayList))} should copy the data only
     *       once. This reduces the expense of habitually making defensive copies at API boundaries.
     *       However, the precise conditions for skipping the copy operation are undefined.
     *   <li><b>Warning:</b> a view collection such as {@link ImmutableMap#keySet} or {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. src/image/gif/reader.go

    	width := int(d.tmp[4]) + int(d.tmp[5])<<8
    	height := int(d.tmp[6]) + int(d.tmp[7])<<8
    	d.imageFields = d.tmp[8]
    
    	// The GIF89a spec, Section 20 (Image Descriptor) says: "Each image must
    	// fit within the boundaries of the Logical Screen, as defined in the
    	// Logical Screen Descriptor."
    	//
    	// This is conceptually similar to testing
    	//	frameBounds := image.Rect(left, top, left+width, top+height)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    // depending on whether daylight savings time is in use at the time instant.
    //
    // Location is used to provide a time zone in a printed Time value and for
    // calculations involving intervals that may cross daylight savings time
    // boundaries.
    type Location struct {
    	name string
    	zone []zone
    	tx   []zoneTrans
    
    	// The tzdata information can be followed by a string that describes
    	// how to handle DST transitions not recorded in zoneTrans.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc.go

    	limit := base + npages*pageSize - 1
    	sc, ec := chunkIndex(base), chunkIndex(limit)
    	si, ei := chunkPageIndex(base), chunkPageIndex(limit)
    
    	scav := uint(0)
    	if sc == ec {
    		// The range doesn't cross any chunk boundaries.
    		chunk := p.chunkOf(sc)
    		scav += chunk.scavenged.popcntRange(si, ei+1-si)
    		chunk.allocRange(si, ei+1-si)
    		p.scav.index.alloc(sc, ei+1-si)
    	} else {
    		// The range crosses at least one chunk boundary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top