Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Span (0.13 sec)

  1. src/runtime/mheap.go

    	if span.list != list {
    		print("runtime: failed mSpanList.remove span.npages=", span.npages,
    			" span=", span, " prev=", span.prev, " span.list=", span.list, " list=", list, "\n")
    		throw("mSpanList.remove")
    	}
    	if list.first == span {
    		list.first = span.next
    	} else {
    		span.prev.next = span.next
    	}
    	if list.last == span {
    		list.last = span.prev
    	} else {
    		span.next.prev = span.prev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	}
    	return tp
    }
    
    // objBase returns the base pointer for the object containing addr in span.
    //
    // Assumes that addr points into a valid part of span (span.base() <= addr < span.limit).
    //
    //go:nosplit
    func (span *mspan) objBase(addr uintptr) uintptr {
    	return span.base() + span.objIndex(addr)*span.elemsize
    }
    
    // bulkBarrierPreWrite executes a write barrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

    .useSummary caption a:visited {
        color:var(--navbar-text-color);
    }
    .overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
    .useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span,
    .requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span,
    .usesSummary caption span {
        white-space:nowrap;
        padding-top:5px;
        padding-left:12px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    		}
    
    		// Check if val points to a heap span.
    		span := spanOfHeap(val)
    		if span == nil {
    			continue
    		}
    
    		// Check if val points to an allocated object.
    		idx := span.objIndex(val)
    		if span.isFree(idx) {
    			continue
    		}
    
    		// val points to an allocated object. Mark it.
    		obj := span.base() + idx*span.elemsize
    		greyobject(obj, b, i, span, gcw, idx)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

        return absl::StrCat("(", absl::StrJoin(operands_str, " & "), ")");
      }
    
      Kind kind() const override { return Kind::kAnd; }
    
      absl::Span<Predicate* const> GetOperands() const override {
        return operands_;
      }
      absl::Span<Predicate* const> operands() const { return operands_; }
    
     private:
      std::vector<Predicate*> operands_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. 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)
  7. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    img[class="story-media"]{
    width:100% !important;
    }
    span[class="full_name_truncate"]{
    width: 190px !important;
    }
    img[class="player"]{
    width: 100% !important;
    }
    img[class="hero-spacer"]{
    width: 100% !important;
    }
    
    }
    
    @media only screen and (max-width: 320px) {
    span[class="full_name_truncate"]{
    width: 175px !important;
    }
    }
    </style>
    </head>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    // starting with 1 above. See discussion of GC rate below.
    
    // Concurrent sweep.
    //
    // The sweep phase proceeds concurrently with normal program execution.
    // The heap is swept span-by-span both lazily (when a goroutine needs another span)
    // and concurrently in a background goroutine (this helps programs that are not CPU bound).
    // At the end of STW mark termination all spans are marked as "needs sweeping".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

              ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		if err != nil {
    			return err
    		}
    	}
    
    	ctx, span := tracing.Start(ctx, "cacher list",
    		attribute.String("audit-id", audit.GetAuditIDTruncated(ctx)),
    		attribute.Stringer("type", c.groupResource))
    	defer span.End(500 * time.Millisecond)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if !c.ready.check() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top