Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 453 for incremented (0.52 sec)

  1. pilot/pkg/xds/sds.go

    		pilotSDSCertificateErrors.Increment()
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    	configClusterSecrets, err := s.secrets.ForCluster(s.configCluster)
    	if err != nil {
    		log.Warnf("config cluster %s not found, cannot retrieve certificates: %v", s.configCluster, err)
    		pilotSDSCertificateErrors.Increment()
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// if sweepgen == h->sweepgen + 1, the span was cached before sweep began and is still cached, and needs sweeping
    	// if sweepgen == h->sweepgen + 3, the span was swept and then cached and is still cached
    	// h->sweepgen is incremented by 2 after every GC
    
    	sweepgen              uint32
    	divMul                uint32        // for divide by elemsize
    	allocCount            uint16        // number of allocated objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

            when:
            file("build/output2/overlapping.txt").text = "overlapping"
            waitForChangesToBePickedUp()
            withWatchFs().run ":incremental", "-DoutputDir=output2"
            then:
            executedAndNotSkipped(":incremental")
            file("build/output1").assertDoesNotExist()
    
            when:
            waitForChangesToBePickedUp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginIncrementalAnalysisIntegrationTest.groovy

            """.stripIndent()
        }
    
        def "incremental analysis cache file is not generated with incremental analysis disabled"() {
            buildFile << 'pmd { incrementalAnalysis = false }'
            goodCode()
    
            expect:
            succeeds("check", "-i")
            !file("build/tmp/pmdMain/incremental.cache").exists()
        }
    
        def "incremental analysis can be enabled"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top