Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for linear_1 (0.41 sec)

  1. guava/src/com/google/common/collect/Iterators.java

            if (topMetaIterator == null) {
              return false;
            }
    
            iterator = topMetaIterator.next();
    
            if (iterator instanceof ConcatenatedIterator) {
              // Instead of taking linear time in the number of nested concatenations, unpack
              // them into the queue
              @SuppressWarnings("unchecked")
              ConcatenatedIterator<T> topConcat = (ConcatenatedIterator<T>) iterator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	}
    }
    
    // patIndex returns the index of name in the list of named wildcards of the
    // request's pattern, or -1 if there is no such name.
    func (r *Request) patIndex(name string) int {
    	// The linear search seems expensive compared to a map, but just creating the map
    	// takes a lot of time, and most patterns will just have a couple of wildcards.
    	if r.pat == nil {
    		return -1
    	}
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	chunks     []atomicScavChunkData
    	min, max   atomic.Uintptr
    	minHeapIdx atomic.Uintptr
    
    	// searchAddr* is the maximum address (in the offset address space, so we have a linear
    	// view of the address space; see mranges.go:offAddr) containing memory available to
    	// scavenge. It is a hint to the find operation to avoid O(n^2) behavior in repeated lookups.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    	}
    
    	// Add space at the end.
    	// Will have -1 modtime, so it will be inserted there.
    	x.versions = append(x.versions, xlMetaV2ShallowVersion{header: xlMetaV2VersionHeader{ModTime: -1}})
    
    	// Linear search, we likely have to insert at front.
    	for i, existing := range x.versions {
    		if existing.header.ModTime <= modTime {
    			// Insert at current idx. First move current back.
    			copy(x.versions[i+1:], x.versions[i:])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_EluOp: TFL_Op<"elu", [
        Pure,
        SameOperandsAndResultShape,
        TFL_SameFirstOperandAndFirstResultElementType]> {
      let summary = "Exponential Linear Unit operator";
      let description = [{
        Computes the exponential linear
          f(x) -> exp(x) - 1 for x < 0, x for x >= 0.
        element-wise.
      }];
    
      let arguments = (ins TFL_TensorOf<[F32, I8]>:$x);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    	// the CPU time the process measures with its own profiler should match the
    	// total CPU usage that the OS reports.
    	//
    	// We could also check that increases in parallelism (GOMAXPROCS) lead to a
    	// linear increase in the CPU usage reported by both the OS and the
    	// profiler, but without a guarantee of exclusive access to CPU resources
    	// that is likely to be a flaky test.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	// must ensure that allocation cannot happen around the
    	// access (since that may free the backing store).
    	allspans []*mspan // all spans out there
    
    	// Proportional sweep
    	//
    	// These parameters represent a linear function from gcController.heapLive
    	// to page sweep count. The proportional sweep system works to
    	// stay in the black by keeping the current page sweep count
    	// above this line at the current gcController.heapLive.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	}
    
    	// Common case: only one kid or all kids have the same weight.
    	// Some clients don't use weights; other clients (like web browsers)
    	// use mostly-linear priority trees.
    	w := n.kids.weight
    	needSort := false
    	for k := n.kids.next; k != nil; k = k.next {
    		if k.weight != w {
    			needSort = true
    			break
    		}
    	}
    	if !needSort {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top