Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 534 for Opened (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/scopes/ScopedCacheBuilderFactory.java

     */
    public interface ScopedCacheBuilderFactory {
        /**
         * Creates a builder for a Gradle version-specific cache with the given key in this scope.
         *
         * <p>By default a cache is opened with a shared lock, so that it can be accessed by multiple processes. It is the caller's responsibility
         * to coordinate access to the cache. The initial lock level can be changed using the provided builder </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/packaging/common/systemd/fess.service

    StandardOutput=null
    
    # Connects standard error to journal
    StandardError=journal
    
    # When a JVM receives a SIGTERM signal it exits with code 143
    SuccessExitStatus=143
    
    # Specifies the maximum file descriptor number that can be opened by this process
    LimitNOFILE=${packaging.os.max.open.files}
    
    # Specifies the maximum number of bytes of memory that may be locked into RAM
    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/ByteSinkTest.java

          TestByteSink okSink = new TestByteSink();
          assertThrows(IOException.class, () -> failSource.copyTo(okSink));
          // ensure stream was closed IF it was opened (depends on implementation whether or not it's
          // opened at all if source.newInputStream() throws).
          assertTrue(
              "stream not closed when copying from source with option: " + option,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/ByteSinkTest.java

          TestByteSink okSink = new TestByteSink();
          assertThrows(IOException.class, () -> failSource.copyTo(okSink));
          // ensure stream was closed IF it was opened (depends on implementation whether or not it's
          // opened at all if source.newInputStream() throws).
          assertTrue(
              "stream not closed when copying from source with option: " + option,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/plugin/plugin.go

    //
    // A plugin is a Go main package with exported functions and variables that
    // has been built with:
    //
    //	go build -buildmode=plugin
    //
    // When a plugin is first opened, the init functions of all packages not
    // already part of the program are called. The main function is not run.
    // A plugin is only initialized once, and cannot be closed.
    //
    // # Warnings
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. .github/workflows/check-bad-merge.yml

    # See .github/workflows/CheckBadMerge.groovy for explanation
    name: Check bad merge commit
    on:
      pull_request:
        types:
         - opened
         - synchronize
    
    permissions: {}
    
    jobs:
      check_pr_commits:
        permissions:
          contents: read
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout code
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
          - name: Set up JDK 11
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheInitializationAction.java

     */
    
    package org.gradle.cache.internal;
    
    import org.gradle.cache.FileLock;
    
    public interface CacheInitializationAction {
        /**
         * Determines if this action should run. Called when the cache is opened, holding either a shared or exclusive lock. May be called multiple times.
         */
        boolean requiresInitialization(FileLock fileLock);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/runtime/fds_unix.go

    			print("runtime: standard file descriptor ", i, " closed, unable to open /dev/null, errno=", errno, "\n")
    			throw("cannot open standard fds")
    		} else if ret != int32(i) {
    			print("runtime: opened unexpected file descriptor ", ret, " when attempting to open ", i, "\n")
    			throw("cannot open standard fds")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:20:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbFileHandle.java

        void close () throws CIFSException;
    
    
        /**
         * @throws CIFSException
         * 
         */
        void release () throws CIFSException;
    
    
        /**
         * @return the file size when it was opened
         */
        long getInitialSize ();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/enhancement.yaml

            Feature requests are unlikely to make progress as issues. Please consider engaging with SIGs on slack and mailing lists, instead.
            A proposal that works through the design along with the implications of the change can be opened as a KEP.
            See https://git.k8s.io/enhancements/keps#kubernetes-enhancement-proposals-keps
        validations:
          required: true
    
      - type: textarea
        id: rationale
        attributes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 750 bytes
    - Viewed (0)
Back to top