Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for mkcounter (0.21 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

       * with an implementation specialized for enums. Unlike {@link ImmutableSet#toImmutableSet}, the
       * resulting set will iterate over elements in their enum definition order, not encounter order.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    			for name := range proxier.nfAcctCounters {
    				if err := proxier.nfacct.Ensure(name); err != nil {
    					proxier.nfAcctCounters[name] = false
    					proxier.logger.Error(err, "Failed to create nfacct counter; the corresponding metric will not be updated", "counter", name)
    				} else {
    					proxier.nfAcctCounters[name] = true
    				}
    			}
    		}
    	}
    
    	//
    	// Below this point we will not return until we try to write the iptables rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

         * is the only one in use, but if we encounter nested concatenations, we start a deque of
         * meta-iterators rather than letting the nesting get arbitrarily deep.  This keeps each
         * operation O(1).
         */
    
        @CheckForNull private Iterator<? extends Iterator<? extends T>> topMetaIterator;
    
        // Only becomes nonnull if we encounter nested concatenations.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

         * is the only one in use, but if we encounter nested concatenations, we start a deque of
         * meta-iterators rather than letting the nesting get arbitrarily deep.  This keeps each
         * operation O(1).
         */
    
        @CheckForNull private Iterator<? extends Iterator<? extends T>> topMetaIterator;
    
        // Only becomes nonnull if we encounter nested concatenations.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	defer tg.cleanup()
    	tg.parallel()
    	tg.tempDir("home/go")
    	tg.setenv(homeEnvName(), tg.path("home"))
    	// Set TEST_TELEMETRY_DIR to a path that doesn't exist
    	// so that the counter uploading code doesn't write
    	// the counter token file to the temp dir after the test finishes.
    	tg.setenv("TEST_TELEMETRY_DIR", "/no-telemetry-dir")
    
    	tg.run("env", "GOPATH")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       * specified supplier. Each input element is mapped to a key and a stream of values, each of which
       * are put into the resulting {@code Multimap}, in the encounter order of the stream and the
       * encounter order of the streams of values.
       *
       * <p>Example:
       *
       * <pre>{@code
       * static final ListMultimap<Character, Character> FIRST_LETTER_MULTIMAP =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    // for the magnitude of that contention. It will also have space to store the
    // magnitude of additional contention the M caused, since it only has space to
    // remember one call stack and might encounter several contention events before
    // it releases all of its locks and is thus able to transfer the local buffer
    // into the profile.
    //
    // The M will collect the call stack when it unlocks the contended lock. That
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top