Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 578 for incremented (0.15 sec)

  1. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    # tag::registering-incremental-annotation-processors[]
    org.gradle.EntityProcessor,isolating
    org.gradle.ServiceRegistryProcessor,dynamic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 191 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.incremental.IncrementalTaskInputs.xml

    <section>
        <section>
            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr><td>incremental</td></tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 566 bytes
    - Viewed (0)
  3. operator/pkg/metrics/utils.go

    	"istio.io/istio/operator/pkg/name"
    )
    
    // CountCRMergeFail increments the count of CR merge failure
    // for the given merge error type.
    func CountCRMergeFail(reason MergeErrorType) {
    	CRMergeFailureTotal.
    		With(MergeErrorLabel.Value(string(reason))).
    		Increment()
    }
    
    // CountManifestRenderError increments the count of manifest
    // render errors.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 20 18:48:20 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/resources/META-INF/gradle/incremental.annotation.processors

    Alex Semin <******@****.***> 1696261454 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 101 bytes
    - Viewed (0)
  5. 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. 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)
  7. src/archive/tar/testdata/gnu-incremental.tar

    Joe Tsai <******@****.***> 1476838264 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 19 18:07:55 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.cc

        }
    
        // Set the increment to 256 * delta.
        Type u64 = rewriter.getIntegerType(64, /*isSigned=*/false);
        RankedTensorType u64_scalar = RankedTensorType::get({}, u64);
        Value step_size = rewriter.create<ConstOp>(loc, GetScalarOfType(u64, 256));
        Value increment =
            rewriter.create<MulOp>(loc, u64_scalar, step_size, rng_op.getDelta());
    
        // Increment the counter.
        SmallVector<Value, 4> pack_args;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/internal/time/MockClock.java

        public MockClock() {
            this(System.currentTimeMillis());
        }
    
        public MockClock(long startTime) {
            current = startTime;
        }
    
        public void increment(long diff) {
            current += diff;
        }
    
        /** Increments the time by 10ms and returns it. */
        @Override
        public long getCurrentTime() {
            current += 10L;
            return current;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 03:50:47 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  10. 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)
Back to top