Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for continued (0.12 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		},
    	}
    
    	var successTestCount, failureTestCount int
    	for _, test := range tests {
    		t.Run(test.name, test.run)
    		if test.wantSkip || len(test.wantInitErr) > 0 || len(test.wantHealthErrPrefix) > 0 {
    			continue
    		}
    		// check metrics for success and failure
    		if test.wantErr == "" {
    			successTestCount++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    	for _, s := range metricStatus {
    		if s.Type != autoscalingv2.ResourceMetricSourceType {
    			continue
    		}
    		if s.Resource == nil {
    			continue
    		}
    		if s.Resource.Name != v1.ResourceCPU {
    			continue
    		}
    		if s.Resource.Current.AverageUtilization == nil {
    			continue
    		}
    		return s.Resource.Current.AverageUtilization
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    ### kubectl delete: < v1.4.0 client vs >=v1.4.0 cluster
    
    If you use an old version kubectl to delete a replication controller or replicaset, then after the delete command has returned, the replication controller or the replicaset will continue to exist in the key-value store for a short period of time (<1s). You probably will not notice any difference if you use kubectl manually, but you might notice it if you are using kubectl in a script.
    
    ### DELETE operation in REST API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    			}
    		}
    		switch {
    		case container.State.Terminated != nil && container.State.Terminated.ExitCode == 0:
    			continue
    		case isRestartableInitContainer(initContainers[container.Name]) &&
    			container.Started != nil && *container.Started:
    			if container.Ready {
    				readyContainers++
    			}
    			continue
    		case container.State.Terminated != nil:
    			// initialization is failed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "continue": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    		},
    		{name: "escaping",
    			obj: map[string]interface{}{
    				// RESERVED symbols defined in the CEL lexer
    				"true": 1, "false": 2, "null": 3, "in": 4, "as": 5,
    				"break": 6, "const": 7, "continue": 8, "else": 9,
    				"for": 10, "function": 11, "if": 12, "import": 13,
    				"let": 14, "loop": 15, "package": 16, "namespace": 17,
    				"return": 18, "var": 19, "void": 20, "while": 21,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			if err != nil {
    				t.Errorf("using %s in testcase %s: unexpected error %v", getSchemaType(schema), k, err)
    				continue
    			}
    			if tc.ExpectedPatch != string(patch) {
    				t.Errorf("using %s in testcase %s: expected %s, got %s", getSchemaType(schema), k, tc.ExpectedPatch, string(patch))
    				continue
    			}
    
    			result, err := StrategicMergePatchUsingLookupPatchMeta([]byte(tc.Old), patch, schema)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    	gatewayListenPort := 80
    	gatewayListenPortName := "tcp"
    
    	destinationSets := []echo.Instances{
    		apps.A,
    	}
    
    	for _, d := range destinationSets {
    		d := d
    		if len(d) == 0 {
    			continue
    		}
    
    		fqdn := d[0].Config().ClusterLocalFQDN()
    		cases = append(cases, TrafficTestCase{
    			name: d[0].Config().Service,
    			// This creates a Gateway with a TCP listener that will accept TCP traffic from host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    Class<? extends Annotation> annotationType = annotation.annotationType();
                    if (annotationType.getAnnotation(Inherited.class) != null) {
                        continue;
                    }
                    Retention retention = annotationType.getAnnotation(Retention.class);
                    methodVisitor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    			if p.Scond != 0 && !evexZcase(yt.zcase) {
    				// Do not signal error and continue to search
    				// for matching EVEX-encoded form.
    				z += int(yt.zoffset)
    				continue
    			}
    
    			switch o.prefix {
    			case Px1: // first option valid only in 32-bit mode
    				if ctxt.Arch.Family == sys.AMD64 && z == 0 {
    					z += int(yt.zoffset) + xo
    					continue
    				}
    			case Pq: // 16 bit escape and opcode escape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top