Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for disappears (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. ChangeLog.md

    - [`KT-59872`](https://youtrack.jetbrains.com/issue/KT-59872) K2: Disappeared TYPE_MISMATCH
    - [`KT-67192`](https://youtrack.jetbrains.com/issue/KT-67192) K2: Disappeared TYPE_MISMATCH [3]
    - [`KT-63319`](https://youtrack.jetbrains.com/issue/KT-63319) K1/K2: inconsistent behavior around NullMarked and type parameter based types
    - [`KT-59882`](https://youtrack.jetbrains.com/issue/KT-59882) K2: Disappeared CANNOT_INFER_PARAMETER_TYPE
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. tests/test_starlette_exception.py

        raise HTTPException(status_code=204)
    
    
    @app.get("/http-no-body-statuscode-with-detail-exception")
    async def no_body_status_code_with_detail_exception():
        raise HTTPException(status_code=204, detail="I should just disappear!")
    
    
    @app.get("/starlette-items/{item_id}")
    async def read_starlette_item(item_id: str):
        if item_id not in items:
            raise StarletteHTTPException(status_code=404, detail="Item not found")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. android/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: Thu May 16 14:34:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top