Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 152 for Boundaries (0.45 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

    import java.util.List;
    
    // todo - stream serialised value to file
    // todo - handle hash collisions (properly, this time)
    // todo - don't store null links to child blocks in leaf index blocks
    // todo - align block boundaries
    // todo - thread safety control
    // todo - merge small values into a single data block
    // todo - discard when file corrupt
    // todo - include data directly in index entry when serializer can guarantee small fixed sized data
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    the file designated by `scalaCompileOptions.incrementalOptions.analysisFile` (which has a sensible default). In a multi-project build, analysis files are passed on to downstream `ScalaCompile` tasks to enable incremental compilation across project boundaries. For `ScalaCompile` tasks added by the Scala plugin, no configuration is necessary to make this work. For other `ScalaCompile` tasks that you might add, the property `scalaCompileOptions.incrementalOptions.publishedCode` needs to be configured to...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top