Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,664 for collector (0.3 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/RenderingUtils.java

                .collect(oxfordJoin(conjunction));
        }
    
        public static Collector<? super String, ?, String> oxfordJoin(String conjunction) {
            return Collectors.collectingAndThen(Collectors.toList(), stringList -> {
                switch (stringList.size()) {
                    case 0:
                        return "";
                    case 1:
                        return stringList.get(0);
                    case 2:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/config/types.go

    type GarbageCollectorControllerConfiguration struct {
    	// enables the generic garbage collector. MUST be synced with the
    	// corresponding flag of the kube-apiserver. WARNING: the generic garbage
    	// collector is an alpha feature.
    	EnableGarbageCollector bool
    	// concurrentGCSyncs is the number of garbage collector workers that are
    	// allowed to sync concurrently.
    	ConcurrentGCSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskRequiredServices.java

        }
    
        private void collectConsumedServices() {
            GetServiceReferencesVisitor collector = new GetServiceReferencesVisitor();
            TaskPropertyUtils.visitAnnotatedProperties(propertyWalker, task, TypeValidationContext.NOOP, collector);
            // this goes through task to benefit from services a task has available
            task.acceptServiceReferences(collector.getServiceReferences());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/garbagecollectorcontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentGCSyncs, "concurrent-gc-syncs", o.ConcurrentGCSyncs, "The number of garbage collector workers that are allowed to sync concurrently.")
    	fs.BoolVar(&o.EnableGarbageCollector, "enable-garbage-collector", o.EnableGarbageCollector, "Enables the generic garbage collector. MUST be synced with the corresponding flag of the kube-apiserver.")
    }
    
    // ApplyTo fills up GarbageCollectorController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. src/time/tick.go

    // [Ticker] would never be recovered by the garbage collector, and that
    // if efficiency was a concern, code should use NewTicker instead and
    // call [Ticker.Stop] when the ticker is no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // tickers, even if they haven't been stopped.
    // The Stop method is no longer necessary to help the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapCollector.java

        Value<Void> collectKeys(ValueConsumer consumer, ValueCollector<K> collector, ImmutableCollection.Builder<K> dest);
    
        void calculateExecutionTimeValue(Action<ExecutionTimeValue<? extends Map<? extends K, ? extends V>>> visitor);
    
        MapCollector<K, V> absentIgnoring();
    
        /**
         * Returns a collector that may never return a missing value.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:22:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

        // As it's basically a DAG traversal, we can keep a queue instead of making recursive calls.
        val allFiles = this
        val filesQueueToAnalyze = ArrayDeque(allFiles)
        val collector = InlineFunctionsCollector(allFiles.first().project, reifiedInlineFunctionsOnly = false) { declaration ->
            val containingFile = declaration.containingKtFile
            if (allFiles.add(containingFile)) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/RuleSourceBackedRuleActionTest.groovy

        private action
        private List collector = []
    
        def "creates rule action for rule source"() {
            when:
            action = RuleSourceBackedRuleAction.create(ModelType.of(List), ruleSource)
    
            then:
            action.inputTypes == [String, Integer, Set]
    
            when:
            action.execute(collector, ["foo", 1, ["bar", "baz"] as Set])
    
            then:
            collector == ["foo", 1, "bar", "baz"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java

         */
        @Override
        public TransformerContext initialize(ModelBuildingRequest request, ModelProblemCollector collector) {
            // We must assume the TransformerContext was created using this.newTransformerContextBuilder()
            DefaultModelProblemCollector problems = (DefaultModelProblemCollector) collector;
            return new TransformerContext() {
    
                @Override
                public Path locate(Path path) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    meshConfig:
      enableTracing: true
      extensionProviders:
      - name: test-otel
        opentelemetry:
          service: opentelemetry-collector.istio-system.svc.cluster.local
          port: 4317
      - name: test-otel-http
        opentelemetry:
          service: opentelemetry-collector.istio-system.svc.cluster.local
          port: 4318
          http:
            path: "v1/traces"
            timeout: 10s
            headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top