Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,664 for collector (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/jvm/distributions-jvm/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.packaging")
    }
    
    description = "The collector project for the 'jvm' portion of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-basics")))
    
        pluginsRuntimeOnly(project(":base-ide-plugins"))
        pluginsRuntimeOnly(project(":code-quality"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/distributions-basics/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.packaging")
    }
    
    description = "The collector project for the 'basics' portion of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-core")))
    
        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":resources-sftp"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:05:59 UTC 2024
    - 945 bytes
    - Viewed (0)
  7. subprojects/distributions-full/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.packaging")
        id("gradlebuild.verify-build-environment")
        id("gradlebuild.install")
    }
    
    description = "The collector project for the entirety of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-publishing")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/EncryptionAlgorithm.java

        }
    
        interface IVCollector {
            void collect(byte[] toCollect) throws IOException;
        }
    
        /**
         * Combines an algorithm and a key, and allows obtaining encryption/decryption ciphers according to those.
         */
        interface Session {
            SecretKey getKey();
            EncryptionAlgorithm getAlgorithm();
            Cipher encryptingCipher(IVCollector collector);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top