Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 5,684 for collector (0.33 sec)

  1. src/runtime/extern.go

    	gcstoptheworld: setting gcstoptheworld=1 disables concurrent garbage collection,
    	making every garbage collection a stop-the-world event. Setting gcstoptheworld=2
    	also disables concurrent sweeping after the garbage collection finishes.
    
    	gctrace: setting gctrace=1 causes the garbage collector to emit a single line to standard
    	error at each collection, summarizing the amount of memory collected and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. pkg/controller/ttlafterfinished/config/types.go

    package config
    
    // TTLAfterFinishedControllerConfiguration contains elements describing TTLAfterFinishedController.
    type TTLAfterFinishedControllerConfiguration struct {
    	// concurrentTTLSyncs is the number of TTL-after-finished collector workers that are
    	// allowed to sync concurrently.
    	ConcurrentTTLSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 889 bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/OriginFixture.groovy

                if (gradle.parent == null) {
                    def collector = gradle.sharedServices.registerIfAbsent("originsCollector", OriginCollector) {
                        parameters.originJson.fileValue(new File("${TextUtil.normaliseFileSeparators(file.absolutePath)}"))
                    }
                    gradle.services.get(${BuildEventListenerRegistryInternal.name}).onOperationCompletion(collector)
                }
            """
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyCollector.java

        /**
         * Returns all dependencies declared on this collector.
         *
         * @since 8.6
         */
        Provider<Set<Dependency>> getDependencies();
    
        /**
         * Returns all dependency constraints declared on this collector.
         *
         * @since 8.7
         */
        Provider<Set<DependencyConstraint>> getDependencyConstraints();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. test/gcstring.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that s[len(s):] - which can point past the end of the allocated block -
    // does not confuse the garbage collector.
    
    package main
    
    import (
    	"runtime"
    	"time"
    )
    
    type T struct {
    	ptr **int
    	pad [120]byte
    }
    
    var things []interface{}
    
    func main() {
    	setup()
    	runtime.GC()
    	runtime.GC()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 872 bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactCollector.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.resolver;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    /**
     * Artifact collector - takes a set of original artifacts and resolves all of the best versions to use
     * along with their metadata. No artifacts are downloaded.
     */
    @Deprecated
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue11256.go

    // Test that stack barriers are reset when a goroutine exits without
    // returning.
    
    package main
    
    import (
    	"runtime"
    	"sync/atomic"
    	"time"
    )
    
    func main() {
    	// Let the garbage collector run concurrently.
    	runtime.GOMAXPROCS(2)
    
    	var x [100][]byte
    
    	for i := range x {
    		var done int32
    
    		go func() {
    			// Use enough stack to get stack barriers, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 29 15:02:30 UTC 2015
    - 1.1K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/apiserverleasegc/gc_controller.go

    	}
    }
    
    // Run starts one worker.
    func (c *Controller) Run(stopCh <-chan struct{}) {
    	defer utilruntime.HandleCrash()
    	defer klog.Infof("Shutting down apiserver lease garbage collector")
    
    	klog.Infof("Starting apiserver lease garbage collector")
    
    	// we have a personal informer that is narrowly scoped, start it.
    	go c.leaseInformer.Run(stopCh)
    
    	if !cache.WaitForCacheSync(stopCh, c.leasesSynced) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 03:27:44 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  9. test/init1.go

    	runtime.ReadMemStats(memstats)
    	sys, numGC := memstats.Sys, memstats.NumGC
    
    	// Generate 1,000 MB of garbage, only retaining 1 MB total.
    	for i := 0; i < N; i++ {
    		x = []byte(s)
    	}
    
    	// Verify that the garbage collector ran by seeing if we
    	// allocated fewer than N*MB bytes from the system.
    	runtime.ReadMemStats(memstats)
    	sys1, numGC1 := memstats.Sys, memstats.NumGC
    	if sys1-sys >= N*MB || numGC1 == numGC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableBiMap.java

    import java.io.InvalidObjectException;
    import java.io.ObjectInputStream;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Comparator;
    import java.util.Map;
    import java.util.function.BinaryOperator;
    import java.util.function.Function;
    import java.util.stream.Collector;
    import java.util.stream.Collectors;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top