Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,885 for LATER (0.06 sec)

  1. android/guava/src/com/google/common/util/concurrent/ExecutionError.java

       * and https://github.com/jspecify/jspecify/issues/490.
       *
       * (That would also have ensured that its cause was always an Error, rather than possibly another
       * kind of Throwable that was later passed to initCause. Then we could have declared the override
       * `public final Error getCause()`.)
       */
    
      /**
       * Creates a new instance with {@code null} as its detail message and no cause.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperOldJavaCrossVersionIntegrationTest.groovy

            then:
            def result = executor.usingExecutable('gradlew').withArgument('help').runWithFailure()
            result.hasErrorOutput("Gradle ${GradleVersion.current().version} requires Java 1.8 or later to run. You are currently using Java ${jdk.javaVersion}.")
    
            where:
            jdk << AvailableJavaHomes.getJdks("1.6", "1.7")
        }
    
        @Requires(IntegTestPreconditions.UnsupportedJavaHomeAvailable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/stdversion/stdversion.go

    package stdversion
    
    import "reflect"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 142 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

        /**
         * Specifies whether to generate colored (ANSI encoded) output for logging. The default is to not generate color output.
         *
         * <p>Supported by Gradle 2.3 or later. Ignored for older versions.</p>
         *
         * @param colorOutput {@code true} to request color output (using ANSI encoding).
         * @return this
         * @since 2.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. releasenotes/notes/endpoint-slice.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Updated** the control plane to read `EndpointSlice` insead of `Endpoints`
      for service discovery for Kubernetes 1.21 or later. To switch back to the old
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 18:34:02 UTC 2021
    - 322 bytes
    - Viewed (0)
  6. src/os/executable_path.go

    // license that can be found in the LICENSE file.
    
    //go:build aix || openbsd
    
    package os
    
    // We query the working directory at init, to use it later to search for the
    // executable file
    // errWd will be checked later, if we need to use initWd
    var initWd, errWd = Getwd()
    
    func executable() (string, error) {
    	var exePath string
    	if len(Args) == 0 || Args[0] == "" {
    		return "", ErrNotExist
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/operations.go

    		}
    		if err != nil {
    			return fmt.Errorf("cannot finalize owner %s, because cannot get it: %v. The garbage collector will retry later", owner.identity, err)
    		}
    		accessor, err := meta.Accessor(ownerObject)
    		if err != nil {
    			return fmt.Errorf("cannot access the owner object %v: %v. The garbage collector will retry later", ownerObject, err)
    		}
    		finalizers := accessor.GetFinalizers()
    		var newFinalizers []string
    		found := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. test/embedvers.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    import _ "embed"
    
    //go:embed x.txt // ERROR "go:embed requires go1.16 or later"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 19 20:07:52 UTC 2021
    - 292 bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/go1_8.go

    // license that can be found in the LICENSE file.
    
    // Check Go language version-specific errors.
    
    package p
    
    // type alias declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 333 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_rename_v1.0.0-bad.txt

    Module example.com/retract/rename is renamed in a later version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.0.0-bad"}
    -- .mod --
    module example.com/retract/rename
    
    go 1.16
    -- go.mod --
    module example.com/retract/rename
    
    go 1.16
    -- rename.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 374 bytes
    - Viewed (0)
Back to top