Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for Boundaries (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       * limits, this call may be executed well before processing the request is able to begin.
       *
       * This will be invoked only once for a single [Call]. Retries of different routes or redirects
       * will be handled within the boundaries of a single [callStart] and [callEnd]/[callFailed] pair.
       */
      open fun callStart(call: Call) {
      }
    
      /**
       * Invoked prior to a proxy selection.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/test2json/test2json.go

    // that fits entirely in cap(b). It will handle input lines longer than cap(b) by
    // calling part(x) for sections of the line. The line will be split at UTF8 boundaries,
    // and the final call to part for a long line includes the final newline.
    type lineBuffer struct {
    	b    []byte       // buffer
    	mid  bool         // whether we're in the middle of a long line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  6. 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)
  7. pkg/test/framework/components/echo/check/checkers.go

    			return checkReachedSourceClusterOnly(result, allClusters)
    		}
    
    		if to.Config().IsAllNaked() {
    			// Requests to naked services will not cross network boundaries.
    			// Istio filters out cross-network endpoints.
    			return checkReachedSourceNetworkOnly(result, allClusters)
    		}
    
    		if !dnsCaptureEnabled && to.Config().IsHeadless() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Name:      "demand_seats",
    			Help:      "Observations, at the end of every nanosecond, of (the number of seats each priority level could use) / (nominal number of seats for that level)",
    			// Rationale for the bucket boundaries:
    			// For 0--1, evenly spaced and not too many;
    			// For 1--2, roughly powers of sqrt(sqrt(2));
    			// For 2--6, roughly powers of sqrt(2);
    			// We need coverage over 1, but do not want too many buckets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/internal/src/pos.go

    	lineShift   = colBits + colShift
    )
    const (
    	// It is expected that the front end or a phase in SSA will usually generate positions tagged with
    	// PosDefaultStmt, but note statement boundaries with PosIsStmt.  Simple statements will have a single
    	// boundary; for loops with initialization may have one for their entry and one for their back edge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top