Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,072 for incremented (0.21 sec)

  1. cmd/bucket-replication.go

    			}
    		case <-p.mrfWorkerKillCh:
    			return
    		}
    	}
    }
    
    // AddWorker adds a replication worker to the pool.
    // An optional pointer to a tracker that will be atomically
    // incremented when operations are running can be provided.
    func (p *ReplicationPool) AddWorker(input <-chan ReplicationWorkerOperation, opTracker *int32) {
    	for {
    		select {
    		case <-p.ctx.Done():
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. test/typeparam/shape1.go

    // Similarly, there should be one instantiation of f for both *incrementer and *decrementer.
    func f[T I](x T) int {
    	return x.foo()
    }
    
    type squarer int
    
    func (x squarer) foo() int {
    	return int(x*x)
    }
    
    type doubler int
    
    func (x doubler) foo() int {
    	return int(2*x)
    }
    
    type incrementer int16
    
    func (x *incrementer) foo() int {
    	return int(*x+1)
    }
    
    type decrementer int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 855 bytes
    - Viewed (0)
  4. cmd/http-stats.go

    	apiStats map[string]int
    	sync.RWMutex
    }
    
    // Inc increments the api stats counter.
    func (stats *HTTPAPIStats) Inc(api string) {
    	if stats == nil {
    		return
    	}
    	stats.Lock()
    	defer stats.Unlock()
    	if stats.apiStats == nil {
    		stats.apiStats = make(map[string]int)
    	}
    	stats.apiStats[api]++
    }
    
    // Dec increments the api stats counter.
    func (stats *HTTPAPIStats) Dec(api string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	llvmStyle       bool
    	max             int // maximum output length
    
    	// The scopes field is used to avoid unnecessary parentheses
    	// around expressions that use > (or >>). It is incremented if
    	// we output a parenthesis or something else that means that >
    	// or >> won't be treated as ending a template. It starts out
    	// as 1, and is set to 0 when we start writing template
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    			// server-side-apply increments resouceVersion if the resource is unchanged for 1 second after the previous write,
    			// and by waiting a second we ensure that resourceVersion will be updated if the no-op patch increments resourceVersion
    			time.Sleep(time.Second)
    			// no-op patch
    			rv := patchedNoxuInstance.GetResourceVersion()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'Change Java files'                         | ['J', 'G']   | ['J.changed', 'G']   | ['Incremental compilation of', "UP-TO-DATE"]                 | ['J.changed', 'G']   | ['UP-TO-DATE', 'UP-TO-DATE']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractTaskResult.java

        private final boolean incremental;
        private final List<String> executionReasons;
    
        protected AbstractTaskResult(long startTime, long endTime, String outcomeDescription, boolean incremental, List<String> executionReasons) {
            super(startTime, endTime, outcomeDescription);
            this.incremental = incremental;
            this.executionReasons = executionReasons;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/metrics_test.cc

      EXPECT_EQ(SavedModelWriteApi("foo").value(), 0);
      SavedModelWriteApi("foo").IncrementBy(1);
      EXPECT_EQ(SavedModelWriteApi("foo").value(), 1);
    
      EXPECT_EQ(SavedModelWriteCount("1").value(), 0);
      SavedModelWriteCount("1").IncrementBy(1);
      EXPECT_EQ(SavedModelWriteCount("1").value(), 1);
    }
    
    TEST(MetricsTest, TestSavedModelRead) {
      SavedModelReadApi("bar").IncrementBy(1);
      EXPECT_EQ(SavedModelReadApi("bar").value(), 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/CompileServices.java

    import org.gradle.api.internal.file.FileOperations;
    import org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.CachingClassDependenciesAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.ClassDependenciesAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.analyzer.DefaultClassDependenciesAnalyzer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top