Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,381 for collector (0.26 sec)

  1. src/time/sleep.go

    // the current time on its channel after at least duration d.
    //
    // Before Go 1.23, the garbage collector did not recover
    // timers that had not yet expired or been stopped, so code often
    // immediately deferred t.Stop after calling NewTimer, to make
    // the timer recoverable when it was no longer needed.
    // As of Go 1.23, the garbage collector can recover unreferenced
    // timers, even if they haven't expired or been stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/FileHasherStatistics.java

        @ServiceScope(Scope.Global.class)
        class Collector {
            private final AtomicLong hashedFileCount = new AtomicLong();
            private final AtomicLong hashedContentLength = new AtomicLong();
    
            public void reportFileHashed(long length) {
                hashedFileCount.incrementAndGet();
                hashedContentLength.addAndGet(length);
            }
    
            public FileHasherStatistics collect() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. cmd/preferredimports/preferredimports.go

    	for _, f := range fs {
    		files = append(files, f)
    	}
    	return files
    }
    
    type collector struct {
    	dirs  []string
    	regex *regexp.Regexp
    }
    
    // handlePath walks the filesystem recursively, collecting directories,
    // ignoring some unneeded directories (hidden/vendored) that are handled
    // specially later.
    func (c *collector) handlePath(path string, info os.FileInfo, err error) error {
    	if err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapSupplier.java

        Value<? extends Map<K, V>> calculateValue(ValueConsumer consumer);
    
        Value<? extends Set<K>> calculateKeys(ValueConsumer consumer);
    
        MapSupplier<K, V> plus(MapCollector<K, V> collector);
    
        /**
         * Returns a view of this supplier that may calculate its value as empty if it would be missing.
         */
        MapSupplier<K, V> absentIgnoring();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:22:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top