Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,563 for current1_ (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/internal/abi/abi_generic.go

    	// passed via the softfloat ABI.
    	//
    	// For platforms that support larger floating point register widths,
    	// such as x87's 80-bit "registers" (not that we support x87 currently),
    	// use 8.
    	EffectiveFloatRegSize = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

         */
        public interface ScopeContext extends AutoCloseable {
            /**
             * Returns the owner of the current scope, which is the last object that started its evaluation.
             * Can be null if the current scope has no owner (e.g. a just opened nested context).
             *
             * @return the owner
             */
            @Nullable
            EvaluationOwner getOwner();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

                    GradleVersion currentBaseVersion = GradleVersion.current().getBaseVersion();
                    Preconditions.checkArgument(parsedGradleVersion.getBaseVersion().compareTo(currentBaseVersion) <= 0,
                        "Base version of Gradle version (%s) must not be greater than base version of current Gradle version: %s", parsedGradleVersion.getVersion(), currentBaseVersion);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    				continue
    			}
    			plState.qsCompleter = qsCompleter
    		}
    		currentCL := int(math.Round(float64(allocs[idx])))
    		relChange := relDiff(float64(currentCL), float64(plState.currentCL))
    		plState.currentCL = currentCL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top