Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 274 for closeable (0.12 sec)

  1. guava/src/com/google/common/io/AppendableWriter.java

    import com.google.common.annotations.J2ktIncompatible;
    import java.io.Closeable;
    import java.io.Flushable;
    import java.io.IOException;
    import java.io.Writer;
    import javax.annotation.CheckForNull;
    
    /**
     * Writer that places all output on an {@link Appendable} target. If the target is {@link Flushable}
     * or {@link Closeable}, flush()es and close()s will also be delegated to the target.
     *
     * @author Alan Green
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/document/DocumentReader.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.index.contents.document;
    
    import java.io.Closeable;
    import java.util.Map;
    
    public interface DocumentReader extends Closeable {
        Map<String, Object> read();
    
        @Override
        void close();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 849 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLogReader.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.suggest.index.contents.querylog;
    
    import java.io.Closeable;
    
    public interface QueryLogReader extends Closeable {
        QueryLog read();
    
        @Override
        void close();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 816 bytes
    - Viewed (0)
  4. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyService.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.security.internal;
    
    import java.io.Closeable;
    
    public interface PublicKeyService extends Closeable {
        void findByLongId(long keyId, PublicKeyResultBuilder builder);
        void findByFingerprint(byte[] fingerprint, PublicKeyResultBuilder builder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 885 bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
         * its parameter type is {@code Object}, not {@code AutoCloseable} or {@code Closeable}.
         *
         * @param closeable the object to be closed (see notes above)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

            registry.add(Closeable, {
                instant.closing
                thread.blockUntil.lookupDone
            } as Closeable)
    
            when:
            async {
                start() {
                    registry.close()
                }
                start {
                    thread.blockUntil.closing
                    try {
                        registry.get(Closeable)
                    } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
         * its parameter type is {@code Object}, not {@code AutoCloseable} or {@code Closeable}.
         *
         * @param closeable the object to be closed (see notes above)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/InvalidJvmInstallationCacheInvalidator.java

     * limitations under the License.
     */
    
    package org.gradle.internal.jvm.inspection;
    
    import javax.annotation.Nonnull;
    import java.io.Closeable;
    import java.io.IOException;
    
    public class InvalidJvmInstallationCacheInvalidator implements Closeable {
    
        @Nonnull
        private final ConditionalInvalidation<JvmInstallationMetadata> cache;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLock.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache;
    
    import java.io.Closeable;
    import java.io.File;
    
    public interface FileLock extends Closeable, FileAccess {
        /**
         * Returns true if the most recent mutation method ({@link #updateFile(Runnable)} or {@link #writeFile(Runnable)} attempted by any process succeeded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultGeneratedGradleJarCache.java

    import org.gradle.cache.PersistentCache;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    
    import java.io.Closeable;
    import java.io.File;
    import java.util.Collections;
    import java.util.List;
    
    public class DefaultGeneratedGradleJarCache implements GeneratedGradleJarCache, Closeable, GlobalCache {
        private final PersistentCache cache;
        private final String gradleVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top