Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for continueCh (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          DenseIntElementsAttr attr;
          if (!matchPattern(val, m_Constant(&attr))) continue;
          operand_ty = attr.getType();
        }
    
        if (operand_ty.getRank() != 1)
          return op.emitOpError()
                 << "requires begin, end and strides to be 1D tensors";
    
        int64_t length = operand_ty.getDimSize(0);
        if (length == -1) continue;
    
        if (expected_size == -1) {
          // This op uses 32-bit masks.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    					continue
    				}
    			} else {
    				t.Errorf("Test %d: %s:  Expected the response status to be `%d`, but instead found `%d`", i, instanceType, testCase.expectedRespStatus, rec.Code)
    				continue
    			}
    		}
    		if rec.Code == http.StatusOK {
    			var cpObjResp CopyObjectResponse
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/crypto/x509/verify_test.go

    			t.Errorf("unexpected error for test #%d: domain=%s, constraint=%s, err=%s", i, test.domain, test.constraint, err)
    			continue
    		}
    
    		if err == nil && test.expectError {
    			t.Errorf("unexpected success for test #%d: domain=%s, constraint=%s", i, test.domain, test.constraint)
    			continue
    		}
    
    		if result != test.shouldMatch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top