Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 809 for current1_ (0.73 sec)

  1. cmd/config-current.go

    Harshavardhana <******@****.***> 1717056898 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/security/get-current-user.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/jvm/UnsupportedJavaRuntimeException.java

            Integer current = Jvm.current().getJavaVersionMajor();
            if (current == null || current >= minVersion) {
                return;
            }
            throw new UnsupportedJavaRuntimeException(String.format("%s %s requires Java %s or later to run. You are currently using Java %s.", component, GradleVersion.current().getVersion(),
                minVersion, current));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperSupportedBuildJvmIntegrationTest.groovy

            expect:
            def failure = wrapperExecuter.withTasks("help").runWithFailure()
            failure.assertHasErrorOutput("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")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

         *
         * @throws DaemonUnavailableException When this daemon is unable to run the command, either because it is currently executing another command
         * or is currently stopping.
         * @throws DaemonStoppedException When this daemon started executing the command but was unable to complete it because the daemon is about to stop.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/runtime/debug.go

    }
    
    // NumCPU returns the number of logical CPUs usable by the current process.
    //
    // The set of available CPUs is checked by querying the operating system
    // at process startup. Changes to operating system CPU allocation after
    // process startup are not reflected.
    func NumCPU() int {
    	return int(ncpu)
    }
    
    // NumCgoCall returns the number of cgo calls made by the current process.
    func NumCgoCall() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

        }
    
        public static OperatingSystem current() {
            if (currentOs == null) {
                currentOs = forName(System.getProperty("os.name"));
            }
            return currentOs;
        }
    
        // for testing current()
        static void resetCurrent() {
            currentOs = null;
        }
    
        public static OperatingSystem forName(String os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pkg/test/framework/testcontext.go

    // their descendant scopes fail.
    func (c *testContext) topLevelScopes() []*scope {
    	var out []*scope
    	current := c.scope.parent
    	for current != nil {
    		if current.topLevel {
    			out = append(out, current)
    		}
    		current = current.parent
    	}
    	return out
    }
    
    func (c *testContext) dump() {
    	if c.suite.RequestTestDump() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

            Registries current = registries.get();
            Registries next = current.startProjectExecution(parallel);
            setProjectExecutionState(current, next);
        }
    
        @Override
        public void finishProjectExecution() {
            // TODO - check no locks are currently held
            Registries current = registries.get();
            Registries next = current.finishProjectExecution();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            // Try to infer the effective jvm options for the currently running process.
            // We only care about 'managed' jvm args, anything else is unimportant to the running build
            JvmOptions jvmOptions = new JvmOptions(fileCollectionFactory);
            // TODO(mlopatkin) figure out a nicer way of handling the presence of agent in the foreground daemon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top