Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,564 for currentCA (0.28 sec)

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

         *
         */
        <T extends BuildCache> T remote(Class<T> type, Action<? super T> configuration);
    
        /**
         * Executes the given action against the currently configured remote cache.
         *
         * @param configuration the action to execute against the currently configured remote cache.
         *
         * @throws IllegalStateException If no remote cache has been assigned yet
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 27 16:11:30 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

        }
    
        @VisibleForTesting
        static FileSystemSnapshot findOutputPropertyStillPresentSincePreviousExecution(FileSystemSnapshot previous, FileSystemSnapshot current) {
            Map<String, FileSystemLocationSnapshot> previousIndex = indexByAbsolutePath(previous);
            return filterSnapshot(current, (currentSnapshot, isRoot) ->
                // Include only outputs that we already considered outputs after the previous execution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/configuration-management.apt

     here's what I do currently in the netbeans part of the mavenide project to
     find the relevant subprojects/sibling projects. I check if the user has
     defined the maven.multiproject.includes property in any of his properties
     files for the current project. if yes. then I'm able to find projects that
     can be offered to be opened together with the current project.
     problems with the current solution are:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. cmd/data-scanner-metric.go

    	name *unsafe.Pointer // contains atomically accessed *string
    }
    
    // currentPathUpdater provides a lightweight update function for keeping track of
    // current objects for each disk.
    // Returns a function that can be used to update the current object
    // and a function to call to when processing finished.
    func (p *scannerMetrics) currentPathUpdater(disk, initial string) (update func(path string), done func()) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/metrics/metrics.go

    		metrics.BuildFQName("", pvControllerSubsystem, boundPVKey),
    		"Gauge measuring number of persistent volume currently bound",
    		[]string{storageClassLabel}, nil,
    		metrics.ALPHA, "")
    	unboundPVCountDesc = metrics.NewDesc(
    		metrics.BuildFQName("", pvControllerSubsystem, unboundPVKey),
    		"Gauge measuring number of persistent volume currently unbound",
    		[]string{storageClassLabel}, nil,
    		metrics.ALPHA, "")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top