Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,684 for collector (0.25 sec)

  1. 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)
  2. 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)
  3. pkg/controller/garbagecollector/garbagecollector.go

    type GarbageCollector struct {
    	restMapper     meta.ResettableRESTMapper
    	metadataClient metadata.Interface
    	// garbage collector attempts to delete the items in attemptToDelete queue when the time is ripe.
    	attemptToDelete workqueue.TypedRateLimitingInterface[*node]
    	// garbage collector attempts to orphan the dependents of the items in the attemptToOrphan queue, then deletes the items.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K 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. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            private final OutputStream stream;
    
            private final OutputStream collector;
    
            public CacheStream(OutputStream stream, OutputStream collector) {
                this.stream = stream;
                this.collector = collector;
            }
    
            public void close() throws IOException {
                stream.close();
                collector.close();
            }
    
            public void flush() throws IOException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  7. 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)
  8. guava/src/com/google/common/hash/BloomFilter.java

       * @return a {@code Collector} generating a {@code BloomFilter} of the received elements
       * @since 23.0
       */
      public static <T extends @Nullable Object> Collector<T, ?, BloomFilter<T>> toBloomFilter(
          Funnel<? super T> funnel, long expectedInsertions) {
        return toBloomFilter(funnel, expectedInsertions, 0.03);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top