Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 770 for current1_ (0.27 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. 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. src/runtime/tracestack.go

    			// capture here.
    			//
    			// (2) We're called against a gp that we're not currently executing on, but that isn't
    			// in a syscall, in which case it's currently not executing. gp.sched contains the most
    			// up-to-date information about where it stopped, and like case (1), we match gcallers
    			// here.
    			//
    			// (3) We're called against a gp that we're not currently executing on, but that is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/types.go

    }
    
    // ProxyMode represents modes used by the Kubernetes proxy server.
    //
    // Currently, three modes of proxy are available on Linux platforms: 'iptables', 'ipvs',
    // and 'nftables'. One mode of proxy is available on Windows platforms: 'kernelspace'.
    //
    // If the proxy mode is unspecified, the best-available proxy mode will be used (currently this
    // is `iptables` on Linux and `kernelspace` on Windows). If the selected proxy mode cannot be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/runtime/mgclimit.go

    }
    
    // update updates the bucket given runtime-specific information. now is the
    // current monotonic time in nanoseconds.
    //
    // This is safe to call concurrently with other operations, except *GCTransition.
    func (l *gcCPULimiterState) update(now int64) {
    	if !l.tryLock() {
    		// We failed to acquire the lock, which means something else is currently
    		// updating. Just drop our update, the next one to update will include
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Types.java

          if (ownerType != null && JavaVersion.CURRENT.jdkTypeDuplicatesOwnerName()) {
            builder.append(JavaVersion.CURRENT.typeName(ownerType)).append('.');
          }
          return builder
              .append(rawType.getName())
              .append('<')
              .append(COMMA_JOINER.join(transform(argumentsList, JavaVersion.CURRENT::typeName)))
              .append('>')
              .toString();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/runtime/metrics/doc.go

    		whether or not it is currently in-use. Currently, this
    		represents all stack memory for goroutines. It also includes all
    		OS thread stacks in non-cgo programs. Note that stacks may be
    		allocated differently in the future, and this may change.
    
    	/memory/classes/heap/unused:bytes
    		Memory that is reserved for heap objects but is not currently
    		used to hold heap objects.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            executer.expectDocumentedDeprecationWarning("Specifying custom build file location has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#configuring_custom_build_layout");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        /**
         * Retrieves the current convention.
         */
        public abstract S convention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention.
         */
        public abstract S setToConvention();
    
        /**
         * Marks this value as being explicitly set with
         * the current value assigned to the convention,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top