Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 155 for Avery (0.07 sec)

  1. src/runtime/malloc.go

    	// The kind of metadata this applies to has a very low overhead when compared
    	// to address space used, but their constant overheads for small heaps would
    	// be very high if they were to be backed by huge pages (e.g. a few MiB makes
    	// a huge difference for an 8 MiB heap, but barely any difference for a 1 GiB
    	// heap). The benefit of huge pages is also not worth it for small heaps,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// seven lines a few times in this source file. The copies below
    	// refer back to the pattern established by this original as the
    	// "LMS-substring iterator".
    	//
    	// In every scan through the text, c0, c1 are successive characters of text.
    	// In this backward scan, c0 == text[i] and c1 == text[i+1].
    	// By scanning backward, we can keep track of whether the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    //
    // This controller is intentionally written in a very verbose style. You will
    // notice:
    //
    // 1. Every 'if' statement has a matching 'else' (exception: simple error
    //    checks for a client API call)
    // 2. Things that may seem obvious are commented explicitly
    //
    // We call this style 'space shuttle style'. Space shuttle style is meant to
    // ensure that every branch and condition is considered and accounted for -
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

       * underlying multimap.
       *
       * <p>The returned multimap isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered multimap's methods, such as {@code size()}, iterate across every
       * key/value mapping in the underlying multimap and determine which satisfy the filter. When a
       * live view is <i>not</i> needed, it may be faster to copy the filtered multimap and use the
       * copy.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multimaps.java

       * underlying multimap.
       *
       * <p>The returned multimap isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered multimap's methods, such as {@code size()}, iterate across every
       * key/value mapping in the underlying multimap and determine which satisfy the filter. When a
       * live view is <i>not</i> needed, it may be faster to copy the filtered multimap and use the
       * copy.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

          while (iterator.hasNext()) {
            if (element.equals(iterator.next())) {
              return true;
            }
          }
        }
        return false;
      }
    
      /**
       * Traverses an iterator and removes every element that belongs to the provided collection. The
       * iterator will be left exhausted: its {@code hasNext()} method will return {@code false}.
       *
       * @param removeFrom the iterator to (potentially) remove elements from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

          while (iterator.hasNext()) {
            if (element.equals(iterator.next())) {
              return true;
            }
          }
        }
        return false;
      }
    
      /**
       * Traverses an iterator and removes every element that belongs to the provided collection. The
       * iterator will be left exhausted: its {@code hasNext()} method will return {@code false}.
       *
       * @param removeFrom the iterator to (potentially) remove elements from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// credit pool.
    	reclaimCredit atomic.Uintptr
    
    	_ cpu.CacheLinePad // prevents false-sharing between arenas and preceding variables
    
    	// arenas is the heap arena map. It points to the metadata for
    	// the heap for every arena frame of the entire usable virtual
    	// address space.
    	//
    	// Use arenaIndex to compute indexes into this array.
    	//
    	// For regions of the address space that are not backed by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

        def buildOperations = new BuildOperationsFixture(executer, testDirectoryProvider)
    
        def setup() {
            requireOwnGradleUserHomeDir("Artifact transforms should run every time and not be shared between tests")
    
            // group name is included in the capabilities of components, which are part of the transform identity
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    	profInsertLock mutex
    	// profBlockLock protects the contents of every blockRecord struct
    	profBlockLock mutex
    	// profMemActiveLock protects the active field of every memRecord struct
    	profMemActiveLock mutex
    	// profMemFutureLock is a set of locks that protect the respective elements
    	// of the future array of every memRecord struct
    	profMemFutureLock [len(memRecord{}.future)]mutex
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top