Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,412 for current1_ (0.23 sec)

  1. 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)
  2. 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)
  3. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// the specified node reflecting which volumes are/or might be attached to that node
    	// based on the current actual state of the world. This function is currently used by
    	// attach_detach_controller to process VolumeInUse
    	GetAttachedVolumesForNode(nodeName types.NodeName) []AttachedVolume
    
    	// GetAttachedVolumesPerNode generates and returns a map of nodes and volumes that added to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/extensions/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
    - 45.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractService.java

          throw new TimeoutException(
              "Timed out waiting for "
                  + this
                  + " to reach a terminal state. "
                  + "Current state: "
                  + state());
        }
      }
    
      /** Checks that the current state is equal to the expected state. */
      @GuardedBy("monitor")
      private void checkCurrentState(State expected) {
        State actual = state();
        if (actual != expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. 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)
  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