Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,664 for collector (0.7 sec)

  1. cmd/kube-controller-manager/app/options/podgccontroller.go

    		return
    	}
    
    	fs.Int32Var(&o.TerminatedPodGCThreshold, "terminated-pod-gc-threshold", o.TerminatedPodGCThreshold, "Number of terminated pods that can exist before the terminated pod garbage collector starts deleting terminated pods. If <= 0, the terminated pod garbage collector is disabled.")
    }
    
    // ApplyTo fills up PodGCController config with options.
    func (o *PodGCControllerOptions) ApplyTo(cfg *podgcconfig.PodGCControllerConfiguration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CommandLineJavaCompilerArgumentsGenerator.java

        @Override
        public void collectArguments(JavaCompileSpec spec, ArgCollector collector) {
            for (String arg : generate(spec)) {
                collector.args(arg);
            }
        }
    
        public Iterable<String> generate(JavaCompileSpec spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/PlannedNodeGraph.java

            }
        }
    
        /**
         * {@link #collectNodes(Collection) Collects} and converts nodes to planned nodes
         * resolving their dependencies with the highest available {@link DetailLevel detail level}.
         */
        public static class Collector {
    
            private final ToPlannedNodeConverterRegistry converterRegistry;
            private final DetailLevel detailLevel;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 15:46:00 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java

            ProblemCollector collector = ProblemCollectorFactory.newInstance(null);
            problems.forEach(p -> collector.add(
                    Problem.Severity.valueOf(p.getSeverity().name()),
                    p.getMessage(),
                    p.getLineNumber(),
                    p.getColumnNumber(),
                    p.getException()));
            return collector.getProblems();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

        private final Symlink symlink;
        private final FileMetadataAccessor metadata;
        private final StatStatistics.Collector statisticsCollector;
    
        public GenericFileSystem(
            FileModeMutator chmod,
            FileModeAccessor stat,
            Symlink symlink,
            FileMetadataAccessor metadata,
            StatStatistics.Collector statisticsCollector,
            TemporaryFileProvider temporaryFileProvider
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. manifests/helm-profiles/demo.yaml

        - name: otel
          envoyOtelAls:
            service: opentelemetry-collector.observability.svc.cluster.local
            port: 4317
        - name: skywalking
          skywalking:
            service: tracing.istio-system.svc.cluster.local
            port: 11800
        - name: otel-tracing
          opentelemetry:
            port: 4317
            service: opentelemetry-collector.observability.svc.cluster.local
    
    global:
      proxy:
        resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 01:25:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/spnego/NegTokenTarg.java

            this.mechanism = mechanism;
        }
    
    
        @Override
        public byte[] toByteArray () {
            try {
                ByteArrayOutputStream collector = new ByteArrayOutputStream();
                ASN1OutputStream der = ASN1OutputStream.create(collector, ASN1Encoding.DER);
                ASN1EncodableVector fields = new ASN1EncodableVector();
                int res = getResult();
                if ( res != UNSPECIFIED_RESULT ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. src/internal/weak/pointer.go

    must be queried for a regular Go pointer.
    The result of such a query may be observed as nil at any point after a
    weakly-pointed-to object becomes eligible for reclamation by the garbage
    collector.
    More specifically, weak pointers become nil as soon as the garbage collector
    identifies that the object is unreachable, before it is made reachable
    again by a finalizer.
    In terms of the C# language, these semantics are roughly equivalent to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pkg/scheduler/metrics/resources/resources.go

    			""),
    	},
    }
    
    // Handler creates a collector from the provided podLister and returns an http.Handler that
    // will report the requested metrics in the prometheus format. It does not include any other
    // metrics.
    func Handler(podLister corelisters.PodLister) http.Handler {
    	collector := NewPodResourcesMetricsCollector(podLister)
    	registry := metrics.NewKubeRegistry()
    	registry.CustomMustRegister(collector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. test/fixedbugs/bug484.go

    // did not. This mismatch meant that s would be marked live
    // (and therefore initialized) at the call to f, but the register optimizer
    // would optimize away the initialization of s before f, causing the
    // garbage collector to use unused data.
    // The register optimizer has been changed to respect the
    // same "address taken" flag that the liveness analysis uses,
    // even if it cannot see any address being taken in the actual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
Back to top