Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for notsan (0.11 sec)

  1. 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)
  2. src/runtime/mwbbuf.go

    		// Mark span.
    		arena, pageIdx, pageMask := pageIndexOf(span.base())
    		if arena.pageMarks[pageIdx]&pageMask == 0 {
    			atomic.Or8(&arena.pageMarks[pageIdx], pageMask)
    		}
    
    		if span.spanclass.noscan() {
    			gcw.bytesMarked += uint64(span.elemsize)
    			continue
    		}
    		ptrs[pos] = obj
    		pos++
    	}
    
    	// Enqueue the greyed objects.
    	gcw.putBatch(ptrs[:pos])
    
    	pp.wbBuf.reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    	Value Value
    }
    
    // TaskID is the internal ID of a task used to disambiguate tasks (even if they
    // are of the same type).
    type TaskID uint64
    
    const (
    	// NoTask indicates the lack of a task.
    	NoTask = TaskID(^uint64(0))
    
    	// BackgroundTask is the global task that events are attached to if there was
    	// no other task in the context at the point the event was emitted.
    	BackgroundTask = TaskID(0)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. src/runtime/arena.go

    //
    // The sweeper handles moving chunks out of this quarantine state to be ready for
    // reuse. When the chunk is placed into the quarantine state, its corresponding
    // span is marked as noscan so that the GC doesn't try to scan memory that would
    // cause a fault.
    //
    // At the next layer are the user arenas themselves. They consist of a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.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 AtomicDoubleArray */
      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
    - 10.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // need to be for resource versions > 0 or the underlying
    // implementation of Store, if resource version = 0.
    //
    // Furthermore, an interval can be either valid or invalid at
    // any given point of time. The notion of validity makes sense
    // only in cases where the window of events in the underlying
    // source can change over time - i.e. for watchCache circular
    // buffer. When the circular buffer is full and an event needs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. .space/CODEOWNERS

    # OWNER_LIST: Zalim.Bashorov
    # OWNER_LIST: Ilya.Goncharov Artem.Kobzar
    # OWNER_LIST: Simon.Ogorodnik Stanislav.Erokhin
    # OWNER_LIST: Alexander.Shabalin Aleksei.Glushko Sergey.Bogolepov Svyatoslav.Scherbina
    # OWNER_LIST: Brian.Norman
    # OWNER_LIST: Sergej.Jaskiewicz
    # OWNER_LIST: Wojciech.Litewka
    # Kotlin Libraries
    # OWNER_LIST: A.Qurbonzoda Vsevolod.Tolstopyato Ilya.Gorbunov Sergey.Shanshin Leonid.Startsev Filipp.Zhinkin
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. 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)
  9. docs/fr/docs/tutorial/query-params-str-validations.md

    * `$` : se termine directement ensuite, n'a pas d'autres caractères après `fixedquery`.
    
    Si vous vous sentez perdu avec le concept d'**expression régulière**, pas d'inquiétudes. Il s'agit d'une notion difficile pour beaucoup, et l'on peut déjà réussir à faire beaucoup sans jamais avoir à les manipuler.
    
    Mais si vous décidez d'apprendre à les utiliser, sachez qu'ensuite vous pouvez les utiliser directement dans **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/runtime/mksizeclasses.go

    	// 		such that d ≤ (2^(N+L) mod d) + 2^L.
    	// 	end if
    	//
    	// [1] "Faster Remainder by Direct Computation: Applications to
    	// Compilers and Software Libraries" Daniel Lemire, Owen Kaser,
    	// Nathan Kurz arXiv:1902.01961
    	//
    	// To minimize the risk of introducing errors, we implement the
    	// algorithm exactly as stated, rather than trying to adapt it to
    	// fit typical Go idioms.
    	N := bits.Len(uint(max))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top