Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,564 for currentCA (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top