Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,880 for current$ (0.21 sec)

  1. pkg/proxy/servicechangetracker.go

    		sct.items[namespacedName] = change
    	}
    	change.current = sct.serviceToServiceMap(current)
    	// if change.previous equal to change.current, it means no change
    	if reflect.DeepEqual(change.previous, change.current) {
    		delete(sct.items, namespacedName)
    	} else {
    		klog.V(4).InfoS("Service updated ports", "service", klog.KObj(svc), "portCount", len(change.current))
    	}
    	metrics.ServiceChangesPending.Set(float64(len(sct.items)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/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: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

                CurrentState<T> current = state;
                current.assertInState(expected);
                try {
                    return action.get();
                } catch (Throwable t) {
                    state = current.failed(ExecutionResult.failed(t));
                    throw state.rethrow();
                }
            });
        }
    
        /**
         * Runs the given action, verifying the current state is not the forbidden state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    			bootstrap: newFlowSchema("fs1", "pl1", 100).Object(),
    			current:   nil,
    			expected:  newFlowSchema("fs1", "pl1", 100).Object(),
    		},
    		{
    			name:      "suggested flow schema exists, auto update is enabled, spec does not match - current object should be updated",
    			strategy:  NewSuggestedEnsureStrategy[*flowcontrolv1.FlowSchema],
    			bootstrap: newFlowSchema("fs1", "pl1", 100).Object(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

        def "returns relative path where file shared some of current dir path"() {
            when:
            def file = new File(rootDir, filePath)
            def current = new File(rootDir, "current/dir")
    
    
            then:
            transform(current, file) == relativePath
    
            where:
            filePath                   | relativePath
            "current/child.txt"        | "../child.txt"
            "current/dir/child.txt"    | "child.txt"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

        private final SortedMap<String, FileSystemSnapshot> current;
    
        public OutputFileChanges(SortedMap<String, FileSystemSnapshot> previous, SortedMap<String, FileSystemSnapshot> current) {
            this.previous = previous;
            this.current = current;
        }
    
        @Override
        public boolean accept(ChangeVisitor visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoUtils.kt

        fun StringBuilder.recurse(current: ObjectReflection, depth: Int) {
            fun indent() = "    ".repeat(depth)
            fun nextIndent() = "    ".repeat(depth + 1)
            when (current) {
                is ObjectReflection.ConstantValue -> append(
                    if (current.type is DataType.StringDataType)
                        "\"${current.value}\""
                    else current.value.toString()
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. api/discovery/aggregated_v2.json

      "items": [
        {
          "metadata": {
            "creationTimestamp": null,
            "name": "apiregistration.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "categories": [
                    "api-extensions"
                  ],
                  "resource": "apiservices",
                  "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. README.md

    * [Building Groovy Libraries](https://docs.gradle.org/current/samples/sample_building_groovy_libraries.html)
    * [Building Scala Applications](https://docs.gradle.org/current/samples/sample_building_scala_applications.html)
    * [Building Scala Libraries](https://docs.gradle.org/current/samples/sample_building_scala_libraries.html)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
            "assigned tool"  | "over everything else"               | "other"  | null           | "current"         | "other"
        }
    
        def "uses #what toolchain #when (without java-base plugin)"() {
            Jvm currentJdk = Jvm.current()
            Jvm otherJdk = AvailableJavaHomes.differentVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top