Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for notsan (0.12 sec)

  1. tensorflow/BUILD

    # )
    #
    # copybara_config_test(
    #     name = "copybara_config_test",
    #     config = "copy.bara.sky",
    #     tags = [
    #         "noasan",
    #         "nodfsan",
    #         "nogotsan",
    #         "nogpu",
    #         "nomsan",
    #         "nosan",
    #         "notsan",
    #         "noubsan",
    #     ],
    #     deps = [":copybara_config"],
    # )
    #
    # action_config_test(
    #     name = "build_cleaner_spec_test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. src/runtime/msize.go

    // minus any inline space for metadata.
    func roundupsize(size uintptr, noscan bool) (reqSize uintptr) {
    	reqSize = size
    	if reqSize <= maxSmallSize-mallocHeaderSize {
    		// Small object.
    		if !noscan && reqSize > minSizeForMallocHeader { // !noscan && !heapBitsInSpan(reqSize)
    			reqSize += mallocHeaderSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

            "//tensorflow/lite/tools/optimize:testdata/weight_shared_between_convs.bin",
        ],
        tags = [
            # TODO(b/327796566): re-enable after the bug is fixed
            "manual",
            "noasan",
            "noguitar",
            "notap",
            "tflite_not_portable_android",
            "tflite_not_portable_ios",
        ],
        deps = [
            ":quantize_weights",
            "//tensorflow/compiler/mlir/lite/schema:schema_fbs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. 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
    		}
    	}
    	if !noscan && !delayedZeroing {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/runtime/race_ppc64le.s

    	// void __tsan_write_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_write_range(SB), R8
    	BR	racecalladdr<>(SB)
    
    // Call a __tsan function from Go code.
    // R8 = tsan function address
    // R3 = *ThreadState a.k.a. g_racectx from g
    // R4 = addr passed to __tsan function
    //
    // Otherwise, setup goroutine context and invoke racecall. Other arguments already set.
    TEXT	racecalladdr<>(SB), NOSPLIT, $0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // Visit the edges after sorting the components in consumer-first order
            while (!queue.isEmpty()) {
                ComponentState component = queue.peekFirst();
                if (component.getVisitState() == VisitState.NotSeen) {
                    component.setVisitState(VisitState.Visiting);
                    int pos = 0;
                    for (NodeState node : component.getNodes()) {
                        if (!node.isSelected()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    	resources := runtimeapi.WindowsContainerResources{}
    
    	memLimit := memoryLimit.Value()
    
    	if !cpuLimit.IsZero() {
    		// Since Kubernetes doesn't have any notion of weight in the Pod/Container API, only limits/reserves, then applying CpuMaximum only
    		// will better follow the intent of the user. At one point CpuWeights were set, but this prevented limits from having any effect.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/internal/trace/oldtrace.go

    	case oldtrace.EvGCMarkAssistDone:
    		mappedType = go122.EvGCMarkAssistEnd
    	case oldtrace.EvUserTaskCreate:
    		mappedType = go122.EvUserTaskBegin
    		parent := ev.Args[1]
    		if parent == 0 {
    			parent = uint64(NoTask)
    		}
    		mappedArgs = timedEventArgs{ev.Args[0], parent, ev.Args[2], uint64(ev.StkID)}
    		name, _ := it.evt.strings.get(stringID(ev.Args[2]))
    		it.tasks[TaskID(ev.Args[0])] = taskState{name: name, parentID: TaskID(ev.Args[1])}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    	s := spanOfUnchecked(b)
    	n := s.elemsize
    	if n == 0 {
    		throw("scanobject n == 0")
    	}
    	if s.spanclass.noscan() {
    		// Correctness-wise this is ok, but it's inefficient
    		// if noscan objects reach here.
    		throw("scanobject of a noscan object")
    	}
    
    	var tp typePointers
    	if n > maxObletBytes {
    		// Large object. Break into oblets for better
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top