Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for Closest (0.14 sec)

  1. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/service/LoadTargetTest.groovy

            @Override
            void close() throws IOException {
                closed = true
            }
        }
    
        def "closes input"() {
            given:
            def input = new TestInputStream()
    
            when:
            target.readFrom(input)
    
            then:
            input.closed
        }
    
        def "closes input on subsequent use"() {
            given:
            def input = new TestInputStream()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/os/file_mutex_plan9.go

    func (file *file) readLock() error {
    	if !file.fdmu.ReadLock() {
    		return ErrClosed
    	}
    	return nil
    }
    
    // readUnlock removes a reference from the file and unlocks it for reading.
    // It also closes the file if it marked as closed and there is no remaining
    // reference.
    func (file *file) readUnlock() {
    	if file.fdmu.ReadUnlock() {
    		file.destroy()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/IoActions.java

            return new TextFileWriterIoAction(output, encoding);
        }
    
        /**
         * Performs the given action against the given resource, then closes the resource. Ignores failure to close the resource when
         * the action throws an exception.
         */
        public static <T extends Closeable> void withResource(T resource, Action<? super T> action) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/lca.go

    package ssa
    
    import (
    	"math/bits"
    )
    
    // Code to compute lowest common ancestors in the dominator tree.
    // https://en.wikipedia.org/wiki/Lowest_common_ancestor
    // https://en.wikipedia.org/wiki/Range_minimum_query#Solution_using_constant_time_and_linearithmic_space
    
    // lcaRange is a data structure that can compute lowest common ancestor queries
    // in O(n lg n) precomputed space and O(1) time per query.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_collector_min_max.cc

      // global_max will be updated by std::max(global_max, input_value) so it
      // is initialized with the value numeric_limits<float>::lowest().
      min_max_statistics_.set_global_max(std::numeric_limits<float>::lowest());
    }
    
    void CalibrationStatisticsCollectorMinMax::Collect(
        const float min, const float max, absl::Span<const int64_t> histogram) {
      min_max_statistics_.set_global_min(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 03:57:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/Closeables.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class Closeables {
      @VisibleForTesting static final Logger logger = Logger.getLogger(Closeables.class.getName());
    
      private Closeables() {}
    
      /**
       * Closes a {@link Closeable}, with control over whether an {@code IOException} may be thrown.
       * This is primarily useful in a finally block, where a thrown exception needs to be logged but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/service/StoreTargetTest.groovy

                    throw new IOException("bang!")
                }
            }
    
            @Override
            void close() throws IOException {
                closed = true
            }
        }
    
        def "closes output"() {
            given:
            def output = new TestOutputStream()
    
            when:
            target.writeTo(output)
    
            then:
            output.closed
        }
    
        def "can write multiple times"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/io/pipe.go

    func (r *PipeReader) Read(data []byte) (n int, err error) {
    	return r.pipe.read(data)
    }
    
    // Close closes the reader; subsequent writes to the
    // write half of the pipe will return the error [ErrClosedPipe].
    func (r *PipeReader) Close() error {
    	return r.CloseWithError(nil)
    }
    
    // CloseWithError closes the reader; subsequent writes
    // to the write half of the pipe will return the error err.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistryTest.groovy

            def homeDirService = services.get(SomeHomeDirService)
            homeDirServices.release(services)
    
            expect:
            !homeDirService.closed
        }
    
        def "closes and recreates services when home dir is different to last use"() {
            def dir1 = new File("home-dir-1")
            def dir2 = new File("home-dir-2")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/Closeables.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class Closeables {
      @VisibleForTesting static final Logger logger = Logger.getLogger(Closeables.class.getName());
    
      private Closeables() {}
    
      /**
       * Closes a {@link Closeable}, with control over whether an {@code IOException} may be thrown.
       * This is primarily useful in a finally block, where a thrown exception needs to be logged but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top