Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 673 for spans (0.2 sec)

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

          if (rangeMap.asMapOfRanges().isEmpty()) {
            return;
          }
          Range<K> span = rangeMap.span();
          checkArgument(
              subRange.encloses(span),
              "Cannot putAll rangeMap with span %s into a subRangeMap(%s)",
              span,
              subRange);
          TreeRangeMap.this.putAll(rangeMap);
        }
    
        @Override
        public void clear() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    		span = c.allocLarge(size, noscan)
    		span.freeindex = 1
    		span.allocCount = 1
    		size = span.elemsize
    		x = unsafe.Pointer(span.base())
    		if needzero && span.needzero != 0 {
    			delayedZeroing = true
    		}
    		if !noscan {
    			// Tell the GC not to look at this yet.
    			span.largeType = nil
    			header = &span.largeType
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    	if start == 0 && offset == 0 && (limit == ^uint64(0) || limit == 0) {
    		// Some tools may introduce a fake mapping that spans the entire
    		// address space. Assume that the address has already been
    		// adjusted, so no additional base adjustment is necessary.
    		return 0, nil
    	}
    
    	switch fh.Type {
    	case elf.ET_EXEC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

     * `COMPOSITE`. Note that a `COMPOSITE` represents a set of devices, they
     * are typically associated with packed variables. Presently, we assume this
     * set spans all the devices. So, a variable on a `COMPOSITE` will have a local
     * instance on the execute op's device.
     */
    bool IsResourceMergeable(Attribute& resource_attr, Attribute& device_attr) {
      return resource_attr &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager.go

    	recorder record.EventRecorder
    
    	// Reference to this node.
    	nodeRef *v1.ObjectReference
    
    	// imageCache is the cache of latest image list.
    	imageCache imageCache
    
    	// tracer for recording spans
    	tracer trace.Tracer
    }
    
    // imageCache caches latest result of ListImages.
    type imageCache struct {
    	// sync.Mutex is the mutex protects the image cache.
    	sync.Mutex
    	// images is the image cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            op.progress.collect { progress(it) }.join('').trim()
        }
    
        private static String progress(Progress p) {
            p.hasDetailsOfType(StyledTextOutputEvent) ? p.details.spans*.text.join('') : ''
        }
    
        private static boolean notEmpty(TestFile file) {
            file.exists() && file.length() > 0
        }
    
        private static boolean hasPlugin(TestFile file, String pluginName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

    .dead-block.highlight-skyblue,
    .dead-value span.highlight-lightgray,
    .dead-block.highlight-lightgray,
    .dead-value span.highlight-yellow,
    .dead-block.highlight-yellow,
    .dead-value span.highlight-lime,
    .dead-block.highlight-lime,
    .dead-value span.highlight-khaki,
    .dead-block.highlight-khaki,
    .dead-value span.highlight-aqua,
    .dead-block.highlight-aqua,
    .dead-value span.highlight-salmon,
    .dead-block.highlight-salmon {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/go/parser/parser_test.go

    package p
    
    var lastDecl int
    
    /* end of file */
    `
    	fset := token.NewFileSet()
    	f, err := ParseFile(fset, "file.go", src, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// File{Start,End} spans the entire file, not just the declarations.
    	if got, want := fset.Position(f.FileStart).String(), "file.go:1:1"; got != want {
    		t.Errorf("for File.FileStart, got %s, want %s", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. src/crypto/internal/mlkem768/mlkem768.go

    	quotient := uint32(uint64(dividend) * barrettMultiplier >> barrettShift)
    	remainder := dividend - quotient*q
    
    	// Since the remainder is in the range [0, 2q), not [0, q), we need to
    	// portion it into three spans for rounding.
    	//
    	//     [ 0,       q/2     ) -> round to 0
    	//     [ q/2,     q + q/2 ) -> round to 1
    	//     [ q + q/2, 2q      ) -> round to 2
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Span.java

    import com.google.common.base.Objects;
    
    import java.io.Serializable;
    
    public class Span implements Serializable {
        private final Style style;
        private final String text;
    
        public Span(Style style, String text) {
            this.style = style;
            this.text = text;
        }
    
        public Span(String text) {
            this(Style.NORMAL, text);
        }
    
        public Style getStyle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top