Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,563 for current1_ (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

    public interface ListenerBuildOperationDecorator {
    
        /**
         * Decorates an action listener.
         * <p>
         * Does not decorate any action that implements {@link InternalListener}.
         * Does not decorate if there is not currently a script or plugin being applied on the thread.
         *
         * @param registrationPoint the place that the listener was registered - used in the operation description / details
         * @param action the action to decorate
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/cmd/util/documentation.go

    	output := []string{}
    	paragraph := []string{}
    
    	for _, line := range lines {
    		// Remove indentation and trailing spaces from the current line
    		trimmedLine := strings.TrimSpace(line)
    		if trimmedLine == "" {
    			if len(paragraph) > 0 {
    				// If the line is empty and the current paragraph is not, we have reached a paragraph end.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockRegistry.java

    public interface ResourceLockRegistry {
        /**
         * Get all of the resource locks held by the current thread.
         */
        Collection<? extends ResourceLock> getResourceLocksByCurrentThread();
    
        /**
         * Returns true if the registry has any locks that are being held by a thread.
         *
         * @return true if any locks in the registry are currently held.
         */
        boolean hasOpenLocks();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top