Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for Alternatively (0.35 sec)

  1. src/internal/types/testdata/examples/inference.go

    package p
    
    type Ordered interface {
    	~int | ~float64 | ~string
    }
    
    func min[T Ordered](x, y T) T { panic(0) }
    
    func _() {
    	// min can be called with explicit instantiation.
    	_ = min[int](1, 2)
    
    	// Alternatively, the type argument can be inferred from
    	// one of the arguments. Untyped arguments will be considered
    	// last.
    	var x int
    	_ = min(x, x)
    	_ = min(x, 1)
    	_ = min(x, 1.0)
    	_ = min(1, 2)
    	_ = min(1, 2.3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

         *     <dt>{@code lines}
         *     <dd>Line number debugging information
         *     <dt>{@code vars}
         *     <dd>Local variable debugging information
         * </dl>
         *
         * <p>Alternatively, a value of {@code none} means debug information will not be generated.</p>
         *
         * <p>When the value is null, only source and line debugging information will be generated.</p>
         */
        @Nullable
        @Optional
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/propertyServiceInjection/groovy/buildSrc/src/main/java/Download.java

    // tag::download[]
    public abstract class Download extends DefaultTask {
        // Use an abstract getter method
        @Inject
        protected abstract ObjectFactory getObjectFactory();
    
        // Alternatively, use a getter method with a dummy implementation
        @Inject
        protected WorkerExecutor getWorkerExecutor() {
            // Method body is ignored
            throw new UnsupportedOperationException();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 816 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/UnsupportedMethodException.java

     * in the version of Gradle that the tooling API is connected to.
     * <p>
     * Typically, to resolve such a problem you change/upgrade the target version of Gradle that
     * the tooling API is connected to. Alternatively, you can handle and ignore this exception.
     *
     * @since 1.0-milestone-8
     */
    public class UnsupportedMethodException extends UnsupportedOperationException {
    
        public UnsupportedMethodException(String s) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. VULNERABILITY_REPORT.md

    contains the following information:
    
    - The project / component that contains the reported vulnerability.
    - A description of the vulnerability. In particular, the type of the
       reported vulnerability and how it might be exploited. Alternatively,
       a well-established vulnerability identifier, e.g. CVE number, can be
       used instead.
    
    Based on the description mentioned above, a MinIO engineer or security team
    member investigates:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/runtime/netpoll_kqueue_pipe.go

    // Therefore we use the pipe to wake up the kevent on NetBSD at this point. Get back here
    // and switch to EVFILT_USER when we bump up the minimal requirement of NetBSD to 10.0.
    // Alternatively, maybe we can use EVFILT_USER on the NetBSD by checking the kernel version
    // via uname(3) and fall back to the pipe if the kernel version is older than 10.0.
    
    var netpollBreakRd, netpollBreakWr uintptr // for netpollBreak
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Configure your `PATH` environment variable to include the `bin` directory of the unzipped distribution, e.g.:
    
    [subs="attributes"]
    ----
    ❯ export PATH=$PATH:/opt/gradle/gradle-{gradleVersion}/bin
    ----
    
    Alternatively, you could also add the environment variable `GRADLE_HOME` and point this to the unzipped distribution.
    Instead of adding a specific version of Gradle to your `PATH`, you can add `$GRADLE_HOME/bin` to your `PATH`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolutionExceptionTest.java

                    + "      mvn install:install-file -DgroupId=aGroupId -DartifactId=anArtifactId -Dversion=aVersion "
                    + "-Dclassifier=aClassifier -Dpackaging=jar -Dfile=/path/to/file" + LS + LS
                    + "  Alternatively, if you host your own repository you can deploy the file there: " + LS
                    + "      mvn deploy:deploy-file -DgroupId=aGroupId -DartifactId=anArtifactId"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. security/tools/jwt/samples/README.md

    ```bash
    TOKEN=$(curl https://raw.githubusercontent.com/istio/istio/master/security/tools/jwt/samples/demo.jwt -s)
    curl --header "Authorization: Bearer $TOKEN" $INGRESS_HOST/headers -s -o /dev/null -w "%{http_code}\n"
    ```
    
    Alternatively, you can use the `gen-jwt.py` script to create new test token:
    
    ```bash
    TOKEN=$(./gen-jwt.py key.pem --expire=300 --iss "******@****.***")
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 24 15:56:06 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/time/internal_test.go

    	// bad when on update), or other timers will hang (if the timer in a
    	// heap is in a bad state). There is no reliable way to test this, but
    	// we wait on a short timer here as a smoke test (alternatively, timers
    	// in later tests may hang).
    	<-After(25 * Millisecond)
    }
    
    var (
    	MinMonoTime = Time{wall: 1 << 63, ext: -1 << 63, loc: UTC}
    	MaxMonoTime = Time{wall: 1 << 63, ext: 1<<63 - 1, loc: UTC}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top