Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Characteristics (0.16 sec)

  1. guava/src/com/google/common/collect/Lists.java

      }
    
      /**
       * Implementation of a transforming random access list. We try to make as many of these methods
       * pass-through to the source list as possible so that the performance characteristics of the
       * source list and transformed list are similar.
       *
       * @see Lists#transform
       */
      private static class TransformingRandomAccessList<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  2. src/crypto/cipher/gcm.go

    	i = ((i << 1) & 0xa) | ((i >> 1) & 0x5)
    	return i
    }
    
    // gcmAdd adds two elements of GF(2¹²⁸) and returns the sum.
    func gcmAdd(x, y *gcmFieldElement) gcmFieldElement {
    	// Addition in a characteristic 2 field is just XOR.
    	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
    }
    
    // gcmDouble returns the result of doubling an element of GF(2¹²⁸).
    func gcmDouble(x *gcmFieldElement) (double gcmFieldElement) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    func TestFuncProperties(t *testing.T) {
    	td := t.TempDir()
    	// td = "/tmp/qqq"
    	// os.RemoveAll(td)
    	// os.Mkdir(td, 0777)
    	testenv.MustHaveGoBuild(t)
    
    	// NOTE: this testpoint has the unfortunate characteristic that it
    	// relies on the installed compiler, meaning that if you make
    	// changes to the inline heuristics code in your working copy and
    	// then run the test, it will test the installed compiler and not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    [.screenshot]
    image::build-cache/overlapping-outputs-timeline.png[]
    
    == Reuse of outputs between different tasks
    
    Some builds exhibit a surprising characteristic: even when executed against an empty cache, they produce tasks loaded from cache. How is this possible? Rest assured that this is completely normal.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

         *
         * The transformer is used to generate the value to use to compare the entries by. That is, the entries are not compared by equals by an attribute or characteristic.
         *
         * The transformer is expected to produce a unique value for each entry in a single set. Behaviour is undefined if this condition is not met.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

         *
         * The transformer is used to generate the value to use to compare the entries by. That is, the entries are not compared by equals by an attribute or characteristic.
         *
         * The transformer is expected to produce a unique value for each entry in a single set. Behaviour is undefined if this condition is not met.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top