Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,564 for currentCA (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top