Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,880 for current$ (0.92 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

    	// Modified is the modified object (new config we want)
    	Modified map[string]interface{}
    	// Current is the current object (live config in the server)
    	Current map[string]interface{}
    	// ThreeWay is the expected three-way merge patch
    	ThreeWay map[string]interface{}
    	// Result is the expected object after applying the three-way patch on current object.
    	Result map[string]interface{}
    }
    
    var createJSONMergePatchTestCaseData = []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/LinkedListMultimap.java

        @Override
        public void remove() {
          checkState(current != null, "no calls to next() since the last call to remove()");
          if (current != next) { // after call to next()
            previous = current.previousSibling;
            nextIndex--;
          } else { // after call to previous()
            next = current.nextSibling;
          }
          removeNode(current);
          current = null;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            'current'      | Jvm.current()                       | 'java-base'
            'differentJdk' | AvailableJavaHomes.differentVersion | 'jvm-toolchains'
            'current'      | Jvm.current()                       | 'jvm-toolchains'
        }
    
        def "fails on toolchain and executable mismatch (with application plugin)"() {
            def jdkCurrent = Jvm.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

    ${variantOf("apiElements", [
                "org.gradle.category": of("library", "library"),
                "org.gradle.dependency.bundling": of("external", "external"),
                "org.gradle.jvm.version": of(JavaVersion.current().majorVersion, JavaVersion.current().majorVersion),
                "org.gradle.libraryelements": of("jar", "classes"),
                "org.gradle.usage": of("java-api", "java-api"),
                "org.gradle.jvm.environment": of("", "standard-jvm"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// current contains the current value for the given metric
    	Current MetricValueStatus `json:"current" protobuf:"bytes,2,name=current"`
    }
    
    // ContainerResourceMetricStatus indicates the current value of a resource metric known to
    // Kubernetes, as specified in requests and limits, describing a single container in each pod in the
    // current scale target (e.g. CPU or memory).  Such metrics are built in to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy_test.go

    			result := merger.compare(tc.current, tc.candidate)
    			if result != tc.current && result != tc.candidate {
    				t.Errorf("Expected result to be either 'current' or 'candidate' hint")
    			}
    			if tc.expected == "current" && result != tc.current {
    				t.Errorf("Expected result to be %v, got %v", tc.current, result)
    			}
    			if tc.expected == "candidate" && result != tc.candidate {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/SignatureTree.java

            SignatureTree current = this;
            for (ParameterMatchEntry matchEntry : matchEntries) {
                if (current.childrenByMatchEntry == null) {
                    current.childrenByMatchEntry = new LinkedHashMap<>();
                }
                if (matchEntry.kind == VARARG && current.childrenByMatchEntry.keySet().stream().anyMatch(it -> it.kind == VARARG)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta1/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
    - 21.3K bytes
    - Viewed (0)
  9. src/runtime/traceregion.go

    		block := a.full
    		a.full = block.next
    		sysFree(unsafe.Pointer(block), unsafe.Sizeof(traceRegionAllocBlock{}), &memstats.other_sys)
    	}
    	if current := a.current.Load(); current != nil {
    		sysFree(current, unsafe.Sizeof(traceRegionAllocBlock{}), &memstats.other_sys)
    		a.current.Store(nil)
    	}
    	a.dropping.Store(false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2/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 {
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 1;
    
      // current contains the current value for the given metric
      optional MetricValueStatus current = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top