Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for disappears (0.54 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/SnapshotWatchedDirectoryFinder.java

    public class SnapshotWatchedDirectoryFinder {
    
        /**
         * Resolves the directories to watch for a snapshot.
         *
         * For existing files, we watch the parent directory,
         * so we learn if the file itself disappears or gets modified.
         * For directories, we only watch the directory itself, as we get
         * events for that.
         * In case of a missing file we need to find the closest existing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressDaemonErrorsCrossVersionSpec.groovy

        @Rule BlockingHttpServer server = new BlockingHttpServer()
        boolean killed = false
    
        void setup() {
            toolingApi.requireIsolatedDaemons()
        }
    
        def "should received failed event when daemon disappears unexpectedly with TAPI higher 2.4"() {
            given:
            goodCode()
            def sync = server.expectAndBlock('sync')
    
            when:
            def result = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/packaging/common/scripts/postrm

            REMOVE_DIRS=true
            REMOVE_SERVICE=true
        ;;
    
        purge)
            REMOVE_USER_AND_GROUP=true
            SOURCE_ENV_FILE=false
        ;;
        failed-upgrade|abort-install|abort-upgrade|disappear|upgrade|disappear)
        ;;
    
        # RedHat ####################################################
        0)
            REMOVE_DIRS=true
            REMOVE_SERVICE=true
            REMOVE_USER_AND_GROUP=true
        ;;
        1)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  4. api/README

    Each file is a list of API features, one per line.
    
    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/deadlock.go

    	// Goexit runs the #2 defer. Its panic
    	// is caught by the #1 defer.  For Goexit, we explicitly
    	// resume execution in the Goexit loop, instead of resuming
    	// execution in the caller (which would make the Goexit disappear!)
    	defer func() {
    		r := recover()
    		if r == nil {
    			panic("bad recover")
    		}
    	}()
    	defer func() {
    		panic("hello")
    	}()
    	runtime.Goexit()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 27 20:44:24 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  6. src/os/dir_darwin.go

    			if IsNotExist(err) {
    				// File disappeared between readdir and stat.
    				// Treat as if it didn't exist.
    				continue
    			}
    			if err != nil {
    				return nil, dirents, nil, err
    			}
    			dirents = append(dirents, de)
    		} else {
    			info, err := lstat(f.name + "/" + string(name))
    			if IsNotExist(err) {
    				// File disappeared between readdir + stat.
    				// Treat as if it didn't exist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

         */
        String getName();
    
        @Override
        ImmutableAttributes getAttributes();
    
        /**
         * Returns the "sub variants" of this variant.
         *
         * <p>This concept should disappear.</p>
         */
        Set<? extends Subvariant> getVariants();
    
        List<? extends DependencyMetadata> getDependencies();
    
        List<? extends ExcludeMetadata> getExcludes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Function.java

       * recognize certain cases where distinct {@code Function} instances would in fact behave
       * identically. However, as code migrates to {@code java.util.function}, that behavior will
       * disappear. It is best not to depend on it.
       */
      @Override
      boolean equals(@CheckForNull Object object);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Mar 20 18:30:19 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonDisappearedException.java

    /**
     * Thrown when a daemon disconnects unexpectedly while a client is interacting with it.
     */
    public class DaemonDisappearedException extends GradleException {
    
        public static final String MESSAGE = "Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)";
    
        public DaemonDisappearedException() {
            super(MESSAGE);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/os/dir_unix.go

    			if IsNotExist(err) {
    				// File disappeared between readdir and stat.
    				// Treat as if it didn't exist.
    				continue
    			}
    			if err != nil {
    				return nil, dirents, nil, err
    			}
    			dirents = append(dirents, de)
    		} else {
    			info, err := lstat(f.name + "/" + string(name))
    			if IsNotExist(err) {
    				// File disappeared between readdir + stat.
    				// Treat as if it didn't exist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top