Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for notsan (0.16 sec)

  1. src/runtime/mcache.go

    	c.scanAlloc = 0
    
    	c.alloc[spc] = s
    }
    
    // allocLarge allocates a span for a large object.
    func (c *mcache) allocLarge(size uintptr, noscan bool) *mspan {
    	if size+_PageSize < size {
    		throw("out of memory")
    	}
    	npages := size >> _PageShift
    	if size&_PageMask != 0 {
    		npages++
    	}
    
    	// Deduct credit for this span allocation and sweep if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. src/os/error.go

    	return underlyingErrorIs(err, ErrPermission)
    }
    
    // IsTimeout returns a boolean indicating whether the error is known
    // to report that a timeout occurred.
    //
    // This function predates [errors.Is], and the notion of whether an
    // error indicates a timeout can be ambiguous. For example, the Unix
    // error EWOULDBLOCK sometimes indicates a timeout and sometimes does not.
    // New code should use errors.Is with a value appropriate to the call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. 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)
  5. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

        1.0,
        Math.PI,
        (double) Integer.MAX_VALUE,
        (double) Long.MAX_VALUE,
        Double.MAX_VALUE,
        Double.POSITIVE_INFINITY,
        Double.NaN,
        Float.MAX_VALUE,
      };
    
      /** The notion of equality used by AtomicDouble */
      static boolean bitEquals(double x, double y) {
        return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y);
      }
    
      static void assertBitEquals(double x, double y) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelReference.java

     * <p>
     * Rule subjects/inputs are defined in terms of references, as opposed to concrete identity.
     * The reference may be by type only, or by path only.
     * <p>
     * A reference doesn't include the notion of readonly vs. writable as the context of the reference implies this.
     * Having this be part of the reference would open opportunities for mismatch of that flag in the context.
     *
     * @param <T> the type of the reference.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

        1.0,
        Math.PI,
        (double) Integer.MAX_VALUE,
        (double) Long.MAX_VALUE,
        Double.MAX_VALUE,
        Double.POSITIVE_INFINITY,
        Double.NaN,
        Float.MAX_VALUE,
      };
    
      /** The notion of equality used by AtomicDouble */
      static boolean bitEquals(double x, double y) {
        return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y);
      }
    
      static void assertBitEquals(double x, double y) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  9. samples/security/spire/spire-quickstart.yaml

                                a set of values. Valid operators are In, NotIn, Exists
                                and DoesNotExist.
                              type: string
                            values:
                              description: values is an array of string values. If the
                                operator is In or NotIn, the values array must be non-empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    							  message: "gotta be baz"
    			`),
    			oldObj: mustUnstructured(`
    				- key: foo
    				  value: notbaz
    				- key: bar
    				  value: notbaz
    			`),
    			newObj: mustUnstructured(`
    				- key: foo
    				  value: notbaz
    				- key: bar
    				  value: notbaz
    				- key: baz
    				  value: baz
    			`),
    			warnings: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top