Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for mkcounter (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The level of support varies based on the versions of each.
    
    If you run into trouble, the first thing you should try is running `./gradlew tasks` from the command line to see whether your issue is limited to the IDE. If you encounter the same problem from the command line, then the issue is with the build rather than the IDE integration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    	s.inFlight = s.inFlight[:len(s.inFlight)-1]
    	return desc, nil
    }
    
    // seqCounter represents a global sequence counter for a resource.
    type seqCounter struct {
    	gen uint64 // The generation for the local sequence counter seq.
    	seq uint64 // The sequence number local to the generation.
    }
    
    // makeSeq creates a new seqCounter.
    func makeSeq(gen, seq uint64) seqCounter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    			d++
    			return d
    		}`, []string{
    			"d = 3", "b = f()", "c = f()", "a = c + b",
    		}},
    		// test case for go.dev/issue/7131
    		{`package main
    
    		var counter int
    		func next() int { counter++; return counter }
    
    		var _ = makeOrder()
    		func makeOrder() []int { return []int{f, b, d, e, c, a} }
    
    		var a       = next()
    		var b, c    = next(), next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * Applies a supplemental hash function to a given hash code, which defends against poor quality
       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::sample[dir="snippets/configurationCache/disallowedTypesFixed/groovy",files="build.gradle[tags=task-type]"]
    ====
    <1> no more problems reported, we now reference the supported type `FileCollection`
    
    In the same vein, if you encounter the same problem with an ad-hoc task declared in a script as follows:
    
    ====
    include::sample[dir="snippets/configurationCache/disallowedTypes/kotlin",files="build.gradle.kts[tags=ad-hoc-task]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    			d++
    			return d
    		}`, []string{
    			"d = 3", "b = f()", "c = f()", "a = c + b",
    		}},
    		// test case for go.dev/issue/7131
    		{`package main
    
    		var counter int
    		func next() int { counter++; return counter }
    
    		var _ = makeOrder()
    		func makeOrder() []int { return []int{f, b, d, e, c, a} }
    
    		var a       = next()
    		var b, c    = next(), next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    TensorCores, optionally followed by a backward pass (training update) with
    more ops on the SparseCore. Ops are broken up into:
      1. SC forward pass
      2. TC forward/backward pass
      3. SC backward pass
      4. non-TPU loop counter updates
    These 4 functions are then staggered so as to enable parallel execution.
    
    In pseudocode, the algorithm is as follows:
    
    // Start step 0
    C_0 = cond(args_0)
    N_0 = non_tpu(args_0)
    if (C_0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * elements.
       *
       * <p>If the mapped keys contain duplicates (according to the comparator), the values are merged
       * using the specified merging function. Entries will appear in the encounter order of the first
       * occurrence of the key.
       *
       * @since 21.0
       */
      public static <T extends @Nullable Object, K, V>
          Collector<T, ?, ImmutableSortedMap<K, V>> toImmutableSortedMap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Gradle 8.4 now configures XML parsers with security features enabled.
    If your build logic has dependencies on old XML parsers that don't support secure parsing, your build may now fail.
    If you encounter a failure, check and update or remove any dependency on legacy XML parsers.
    
    If you are unable to upgrade XML parsers coming from your build logic dependencies, you can force the use of the XML parsers built into the JVM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    // This method is intended primarily for use in the host object
    // loaders, to capture the semantics of symbols and sections in an
    // object file. When reading a host object file, we'll typically
    // encounter a static section symbol (ex: ".text") containing content
    // for a collection of functions, then a series of ELF (or macho, etc)
    // symbol table entries each of which points into a sub-section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top