Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,563 for current5_ (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    $ gradle --status
    ----
    
    ----
       PID STATUS   INFO
     28486 IDLE     7.5
     34247 BUSY     7.5
    ----
    
    Currently, a given Gradle version can only connect to Daemons of the same version.
    This means the status output only shows Daemons spawned running the same version of Gradle as the current project.
    
    [[find_all_daemons]]
    == Find Daemons
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                        when {
                            OperatingSystem.current().isLinux -> requirements = listOf("os=linux", "gbt-dogfooding")
                            OperatingSystem.current().isWindows -> requirements = listOf("os=windows", "gbt-dogfooding")
                            OperatingSystem.current().isMacOsX -> requirements = listOf("os=macos", "gbt-dogfooding")
                        }
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n   the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t  Currently the port of an Ingress is implicitly :80 for http and\n\t  :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. pkg/ledger/ledger.go

    	// Delete removes a key from the Ledger, which may still be read using GetPreviousValue
    	Delete(key string) error
    	// Get returns a the value of the key from the Ledger's current state
    	Get(key string) (string, error)
    	// RootHash is the hash of all keys and values currently in the Ledger
    	RootHash() string
    	// GetPreviousValue executes a get against a previous version of the ledger, using that version's root hash.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. guava/src/com/google/common/util/concurrent/Monitor.java

      }
    
      /**
       * Returns whether the current thread is occupying this monitor (has entered more times than it
       * has left).
       */
      public boolean isOccupiedByCurrentThread() {
        return lock.isHeldByCurrentThread();
      }
    
      /**
       * Returns the number of times the current thread has entered this monitor in excess of the number
       * of times it has left. Returns 0 if the current thread is not occupying this monitor.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // Note the following deviations from the "host" part of the
      // URI as defined in RFC 3986:
      // 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
      //    the IP in the Spec of the parent Ingress.
      // 2. The `:` delimiter is not respected because ports are not allowed.
      // 	  Currently the port of an Ingress is implicitly :80 for http and
      // 	  :443 for https.
      // Both these may change in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

    These settings can be adjusted by setting 'org.gradle.jvmargs' in 'gradle.properties'.
    The currently configured max heap space is '512 MiB' and the configured max metaspace is 'unknown'.
    ${COMMON_HINT}""")
        }
    
        def "expires daemon immediately when garbage collector is thrashing"() {
            given:
            if (JavaVersion.current().isJava9Compatible() && GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top