Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 182 for incremental (0.82 sec)

  1. .space/CODEOWNERS

    /compiler/frontend.common.jvm/ "Kotlin Compiler Core" Simon.Ogorodnik
    /compiler/frontend.common-psi/ "Kotlin Compiler Core" Simon.Ogorodnik
    /compiler/frontend.java/ "Kotlin Compiler Core" Simon.Ogorodnik
    /compiler/incremental-compilation-impl/ "Kotlin Build Tools"
    /compiler/ir/backend.common/ "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /compiler/ir/backend.js/ "Kotlin Common Backend"
    /compiler/ir/backend.jvm/ "Kotlin JVM"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                        result.getOrNull()
                    }
    
                    // Referent is not configured and wasn't invalidated
                    // This can be a case in an incremental sync scenario, when referrer script was changed and since re-configured,
                    // but referent wasn't changed and since wasn't configured.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    	counter.Linksym().Type = objabi.SLIBFUZZER_8BIT_COUNTER
    
    	// We guarantee that the counter never becomes zero again once it has been
    	// incremented once. This implementation follows the NeverZero optimization
    	// presented by the paper:
    	// "AFL++: Combining Incremental Steps of Fuzzing Research"
    	// The NeverZero policy avoids the overflow to 0 by setting the counter to one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // info, the "flag:"+flagName counter will be incremented.
    //
    // CountCommandLineFlags must be called after flags are parsed
    // with flag.Parse.
    //
    // For instance, if the -S flag is passed to cmd/compile and
    // CountCommandLineFlags is called after flags are parsed,
    // the "compile/flag:S" counter will be incremented.
    func CountCommandLineFlags() {
    	prefix := "flag:"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/AbstractCache.java

          loadSuccessCount.increment();
          totalLoadTime.add(loadTime);
        }
    
        @SuppressWarnings("GoodTime") // b/122668874
        @Override
        public void recordLoadException(long loadTime) {
          loadExceptionCount.increment();
          totalLoadTime.add(loadTime);
        }
    
        @Override
        public void recordEviction() {
          evictionCount.increment();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/AbstractCache.java

          loadSuccessCount.increment();
          totalLoadTime.add(loadTime);
        }
    
        @SuppressWarnings("GoodTime") // b/122668874
        @Override
        public void recordLoadException(long loadTime) {
          loadExceptionCount.increment();
          totalLoadTime.add(loadTime);
        }
    
        @Override
        public void recordEviction() {
          evictionCount.increment();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/FakeTicker.java

        checkArgument(autoIncrementStep >= 0, "May not auto-increment by a negative amount");
        this.autoIncrementStepNanos = timeUnit.toNanos(autoIncrementStep);
        return this;
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       *
       * @since 28.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/telemetrystats/telemetrystats.go

    package telemetrystats
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/modload"
    	"cmd/internal/telemetry"
    )
    
    func Increment() {
    	incrementConfig()
    	incrementVersionCounters()
    }
    
    // incrementConfig increments counters for the configuration
    // the command is running in.
    func incrementConfig() {
    	if !modload.WillBeEnabled() {
    		telemetry.Inc("go/mode:gopath")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top