Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,277 for current1_ (0.37 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/WorkInProgressRenderer.java

        private boolean isRenderable(ProgressOperation operation) {
            for (ProgressOperation current = operation; current != null; current = current.getParent()) {
                if (current.getMessage() != null) {
                    return true;
                }
            }
    
            return false;
        }
    
        private void renderNow() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     *     }
     *
     *     {@literal @}Override
     *     {@literal @}Nullable
     *     public String obtain() {
     *         // your custom implementation
     *     }
     * }
     * </pre>
     * Currently, only a small subset of services is supported:
     * <ul>
     *     <li>{@link org.gradle.process.ExecOperations} provides means to execute external processes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/output/types.go

    	NewVersion     string
    	NodeName       string
    }
    
    // ComponentConfigVersionState describes the current and desired version of a component config
    type ComponentConfigVersionState struct {
    	// Group points to the Kubernetes API group that covers the config
    	Group string
    
    	// CurrentVersion is the currently active component config version
    	// NOTE: This can be empty in case the config was not found on the cluster or it was unsupported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. cmd/leak-detect_test.go

    		for _, g := range leaked {
    			t.Errorf("Leaked goroutine: %v", g)
    		}
    		return
    	}
    }
    
    // DetectTestLeak -  snapshots the currently running goroutines and returns a
    // function to be run at the end of tests to see whether any
    // goroutines leaked.
    // Usage: `defer DetectTestLeak(t)()` in beginning line of benchmarks or unit tests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/monitoring/monitoring.go

    	// Increment records a value of 1 for the current measure. For Sums,
    	// this is equivalent to adding 1 to the current value. For Gauges,
    	// this is equivalent to setting the value to 1. For Distributions,
    	// this is equivalent to making an observation of value 1.
    	Increment()
    
    	// Decrement records a value of -1 for the current measure. For Sums,
    	// this is equivalent to subtracting -1 to the current value. For Gauges,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            def currentOs = OperatingSystem.current()
            if (currentOs.macOsX) {
                // macOS coalesces the changes if the are in short succession
                return numberOfChangedFiles * numberOfChangesPerFile * LOST_EVENTS_RATIO_MAC_OS
            } else if (currentOs.linux) {
                // the JDK watchers only capture one event per watched path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/README.md

    ## Build Systems
    
    There are currently two ways we generate the necessary files. We are currently
    migrating the build system to use containers so the builds are reproducible.
    This is being done on an OS-by-OS basis. Please update this documentation as
    components of the build system change.
    
    ### Old Build System (currently for `GOOS != "linux"`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  8. samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt

      val okHttp_3_14 = historicOkHttp("3.14")
      val okHttp_3_13 = historicOkHttp("3.13")
      val okHttp_3_11 = historicOkHttp("3.11")
      val okHttp_3_9 = historicOkHttp("3.9")
    
      val currentVm = currentVm(ianaSuitesNew)
    
      val conscrypt =
        if (includeConscrypt) {
          Security.addProvider(Conscrypt.newProvider())
          conscrypt(ianaSuitesNew)
        } else {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

     *       Once configuration is available, it will be used, as per the above.
     *     </li>
     * </ul>
     *
     * <p>Currently, there is no simple, general way to know where in the above lifecycle a given piece of work will run.</p>
     */
    @ServiceScope(Scope.BuildTree.class)
    public class LifecycleAwareBuildCacheControllerFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. security/pkg/server/ca/node_auth.go

    		return fmt.Errorf("pod %v/%v not found", caller.PodNamespace, caller.PodName)
    	}
    	// Make sure UID is still valid for our current state
    	if callerPod.UID != types.UID(caller.PodUID) {
    		// This would only happen if a pod is re-created with the same name, and the CSR client is not in sync on which is current;
    		// this is fine and should be eventually consistent. Client is expected to retry in this case.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top