Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,887 for current$ (3.43 sec)

  1. android/guava/src/com/google/common/collect/TreeMultiset.java

          for (AvlNode<E> current = header.succ(); current != header; ) {
            AvlNode<E> next = current.succ();
    
            current.elemCount = 0;
            // Also clear these fields so that one deleted Entry doesn't retain all elements.
            current.left = null;
            current.right = null;
            current.pred = null;
            current.succ = null;
    
            current = next;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

        }
    
        def "Returns current JVM when located using Java home dir"() {
            expect:
            def current = Jvm.current()
            def jvm = Jvm.forHome(current.javaHome)
    
            jvm.is(current)
        }
    
        def "Returns current JVM when located using java.home dir"() {
            expect:
            def current = Jvm.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. 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)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

            }
        }
    
        static final class Jdk10OrEarlier implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                return JavaVersion.current() <= JavaVersion.VERSION_1_10
            }
        }
    
        static final class Jdk11OrLater implements TestPrecondition {
            @Override
            boolean isSatisfied() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/ensurer/strategy.go

    	var zero ObjectType
    	if current == zero {
    		return zero, false, nil
    	}
    
    	autoUpdateSpec := s.alwaysAutoUpdateSpec
    	if !autoUpdateSpec {
    		autoUpdateSpec = shouldUpdateSpec(current)
    	}
    	updateAnnotation := shouldUpdateAnnotation(current, autoUpdateSpec)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // PodsMetricStatus indicates the current value of a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    message PodsMetricStatus {
      // metricName is the name of the metric in question
      optional string metricName = 1;
    
      // currentAverageValue is the current value of the average of the
      // metric across all relevant pods (as a quantity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // PodsMetricStatus indicates the current value of a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    message PodsMetricStatus {
      // metricName is the name of the metric in question
      optional string metricName = 1;
    
      // currentAverageValue is the current value of the average of the
      // metric across all relevant pods (as a quantity)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                    current = newRequestedVersion(out, dependency);
                }
                if (!singlePathToDependency || current.getChildren().isEmpty()) {
                    current.addChild(dependency);
                }
            }
    
            return out;
        }
    
        private DependencyReportHeader createHeaderForDependency(DependencyEdge dependency, Set<Throwable> alreadyReportedErrors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    COMPONENT   NODE      CURRENT   TARGET
    kubelet     node1     v1.18.1   v1.18.4
    
    Upgrade to the latest version in the v1.18 series:
    
    COMPONENT                 NODE      CURRENT   TARGET
    kube-apiserver            node1     v1.18.1   v1.18.4
    kube-controller-manager   node1     v1.18.1   v1.18.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// averageValue is the current value of the average of the
    	// metric across all relevant pods (as a quantity)
    	// +optional
    	AverageValue *resource.Quantity `json:"averageValue,omitempty" protobuf:"bytes,5,name=averageValue"`
    }
    
    // PodsMetricStatus indicates the current value of a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top