Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for notsan (0.43 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/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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	requestDigest utilflowcontrol.RequestDigest,
    	noteFn func(fs *flowcontrol.FlowSchema, pl *flowcontrol.PriorityLevelConfiguration, flowDistinguisher string),
    	workEstimator func() fcrequest.WorkEstimate,
    	queueNoteFn fq.QueueNoteFn,
    	execFn func(),
    ) {
    	if t.mockDecision == decisionSkipFilter {
    		panic("Handle should not be invoked")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    		}
    	}
    	h.allspans = h.allspans[:len(h.allspans)+1]
    	h.allspans[len(h.allspans)-1] = s
    }
    
    // A spanClass represents the size class and noscan-ness of a span.
    //
    // Each size class has a noscan spanClass and a scan spanClass. The
    // noscan spanClass contains only noscan objects, which do not contain
    // pointers and thus do not need to be scanned by the garbage
    // collector.
    type spanClass uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/BUILD

            "rearrange_function_argument_pass_test.cc",
        ],
        tags = [
            # TODO(b/141643254) Re-enable msan after fixing
            # use-of-uninitialized-value error.
            "nomsan",
        ] + tf_cuda_tests_tags(),
        deps = [
            ":common",
            ":compilability_check_util",
            ":compilation_passes",
            ":compilation_passes_test_main",
            ":encapsulate_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    //
    //go:nosplit
    func (span *mspan) heapBits() []uintptr {
    	const doubleCheck = false
    
    	if doubleCheck && !span.isUserArenaChunk {
    		if span.spanclass.noscan() {
    			throw("heapBits called for noscan")
    		}
    		if span.elemsize > minSizeForMallocHeader {
    			throw("heapBits called for span class that should have a malloc header")
    		}
    	}
    	// Find the bitmap at the end of the span.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	if parentID == BackgroundTask {
    		// Note: a value of 0 here actually means no parent, *not* the
    		// background task. Automatic background task attachment only
    		// applies to regions.
    		parentID = NoTask
    		ev.args[1] = uint64(NoTask)
    	}
    
    	// Validate the name and record it. We'll need to pass it through to
    	// EvUserTaskEnd.
    	nameID := stringID(ev.args[2])
    	name, ok := evt.strings.get(nameID)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // associated with "runlevel" of "0" or "1";  you will set the selector as
      // follows:
      // "namespaceSelector": {
      //   "matchExpressions": [
      //     {
      //       "key": "runlevel",
      //       "operator": "NotIn",
      //       "values": [
      //         "0",
      //         "1"
      //       ]
      //     }
      //   ]
      // }
      //
      // If instead you want to only run the policy on any objects whose
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

         * elements.
         *
         * <p><b>Warning:</b> this may have unexpected results if a backing set of this view uses a
         * nonstandard notion of equivalence, for example if it is a {@link TreeSet} using a comparator
         * that is inconsistent with {@link Object#equals(Object)}.
         */
        @SuppressWarnings("nullness") // Unsafe, but we can't fix it now.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top