Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,277 for current1_ (0.37 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/test/csrctrl/signer/ca_provider.go

    		PrivateKey:  priv,
    		Backdate:    5 * time.Minute,
    	}
    	p.caValue.Store(ca)
    
    	return nil
    }
    
    // currentCA provides the current value of the CA.
    // It always check for a stale value.  This is cheap because it's all an in memory cache of small slices.
    func (p *caProvider) currentCA() (*authority.CertificateAuthority, error) {
    	certPEM, cerr := p.currentCertContent()
    	if cerr != nil {
    		return nil, cerr
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 27 08:14:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/AbstractTestLogger.java

            boolean isAtomicTestWhoseParentIsNotTheTestClass = !current.isComposite() && current.getClassName() != null &&
                (current.getParent() == null || !current.getClassName().equals(current.getParent().getName()));
            if (!isAtomicTestWhoseParentIsNotTheTestClass) {
                return false;
            }
            if (current.getParent() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/operations/BuildOperationExecutorIntegrationTest.groovy

            failure.assertThatCause(Matchers.containsText("Multiple build operations failed"));
        }
    
        // This is the current behavior:
        // We need to make sure that the build operation ids of nested builds started by a GradleBuild task do not overlap.
        // Since we currently have no specific scope for "one build and the builds it started via GradleBuild tasks", we use the global scope.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top