Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,684 for collector (0.36 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:generic-garbage-collector
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:generic-garbage-collector
      subjects:
      - kind: ServiceAccount
        name: generic-garbage-collector
        namespace: kube-system
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/native/distributions-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.packaging")
    }
    
    description = "The collector project for the 'native' portion of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-jvm"))) {
            because("the project dependency 'toolingNative -> ide' currently links this to the JVM ecosystem")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 825 bytes
    - Viewed (0)
  3. test/gc.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Simple test of the garbage collector.
    
    package main
    
    import "runtime"
    
    func mk2() {
    	b := new([10000]byte)
    	_ = b
    	//	println(b, "stored at", &b)
    }
    
    func mk1() { mk2() }
    
    func main() {
    	for i := 0; i < 10; i++ {
    		mk1()
    		runtime.GC()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 411 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue4029.c

    #include <stdint.h>
    #include <dlfcn.h>
    
    // Write our own versions of dlopen/dlsym/dlclose so that we represent
    // the opaque handle as a Go uintptr rather than a Go pointer to avoid
    // garbage collector confusion.  See issue 23663.
    
    uintptr_t dlopen4029(char* name, int flags) {
    	return (uintptr_t)(dlopen(name, flags));
    }
    
    uintptr_t dlsym4029(uintptr_t handle, char* name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 781 bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

                BuildLifecycleAwareVirtualFileSystem virtualFileSystem,
                DeploymentRegistryInternal deploymentRegistry,
                StatStatistics.Collector statStatisticsCollector,
                FileHasherStatistics.Collector fileHasherStatisticsCollector,
                DirectorySnapshotterStatistics.Collector directorySnapshotterStatisticsCollector,
                BuildOperationRunner buildOperationRunner,
                BuildLayout buildLayout,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/ResourcesTest.java

            new LineProcessor<List<String>>() {
              List<String> collector = new ArrayList<>();
    
              @Override
              public boolean processLine(String line) {
                collector.add(whitespace().trimFrom(line));
                return true;
              }
    
              @Override
              public List<String> getResult() {
                return collector;
              }
            };
        List<String> result =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

      // NOLINTNEXTLINE: Use tsl::protobuf to be compatible with OSS.
      tsl::protobuf::TextFormat::Parser parser;
      NoOpErrorCollector collector;
      parser.RecordErrorsTo(&collector);
      return hlo_proto->ParseFromString(contents) ||
             parser.ParseFromString(contents, hlo_proto) ||
             hlo_proto->mutable_hlo_module()->ParseFromString(contents) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/CompileSpecToArguments.java

     */
    
    package org.gradle.api.internal.tasks.compile;
    
    import org.gradle.internal.process.ArgCollector;
    
    public interface CompileSpecToArguments<T> {
        void collectArguments(T spec, ArgCollector collector);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 821 bytes
    - Viewed (0)
  9. src/runtime/mcheckmark.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // GC checkmarks
    //
    // In a concurrent garbage collector, one worries about failing to mark
    // a live object due to mutations without write barriers or bugs in the
    // collector implementation. As a sanity check, the GC has a 'checkmark'
    // mode that retraverses the object graph with the world stopped, to make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/CachingFileHasher.java

        private final FileHasherStatistics.Collector statisticsCollector;
    
        public CachingFileHasher(
            FileHasher delegate,
            CrossBuildFileHashCache store,
            StringInterner stringInterner,
            FileTimeStampInspector timestampInspector,
            String cacheName,
            FileSystem fileSystem,
            int inMemorySize,
            FileHasherStatistics.Collector statisticsCollector
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 13:47:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top