Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,563 for current1_ (0.12 sec)

  1. docs/de/docs/tutorial/security/get-current-user.md

    Nils Lindemann <******@****.***> 1711822085 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:05 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    		},
    		LabelNamePhase, requestKind,
    	)
    	apiserverCurrentR = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "current_r",
    			Help:           "R(time of last change)",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{priorityLevel},
    	)
    	apiserverDispatchR = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactoryTest.groovy

            otherJavaHome.createDir("bin")
            otherJavaHome.file(OperatingSystem.current().getExecutableName("bin/java")).touch()
            otherJavaHome.file(OperatingSystem.current().getExecutableName("bin/javac")).touch()
    
            def version = currentVM == 'current' ? Jvm.current().javaVersion.majorVersion : currentVM
            def javaHome = currentVM == 'current' ? Jvm.current().javaHome : otherJavaHome.absoluteFile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            install using task: :installMainExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/main/main
    
    Note: currently not all plugins register their components, so some components may not be visible here.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *
     *     <dt>watched files</dt>
     *     <dd>A {@link org.gradle.internal.file.FileHierarchySet} of the files that we are currently watching.
     *     This helps decide whether or not something is being watched in a quick way.</dd>
     *
     *     <dt>watched hierarchies</dt>
     *     <dd>The list of file system hierarchies we are currently watching.
     *     When hierarchies are nested inside each other, this includes only the outermost hierarchies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

                assertDebugFileExists()
            } else if (toolChain.meets(ToolChainRequirement.GCC) && OperatingSystem.current().windows) {
                // Currently cannot probe the actual symbols yet, just verify that there are some
                binaryInfo.assertHasDebugSymbols()
            } else {
                def symbols = binaryInfo.listDebugSymbols()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/ElementUtils.java

        public static String getTopLevelTypeName(Element originatingElement) {
            Element current = originatingElement;
            Element parent = originatingElement;
            while (parent != null && !(parent instanceof PackageElement)) {
                current = parent;
                parent = current.getEnclosingElement();
            }
            String name = getElementName(current);
            if (name != null) {
                return name;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top