Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 198 for erator (0.23 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    			if tc.shouldFail && err == nil {
    				t.Error("expecting failure, but err is nil")
    			}
    			if tc.initAttachErr != nil && err != nil {
    				if tc.initAttachErr.Message != err.Error() {
    					t.Errorf("expecting error [%v], got [%v]", tc.initAttachErr.Message, err.Error())
    				}
    			}
    			if err == nil && retID != attachID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // Only rank size four input will be only available by the tf.Conv2D
        // operator verification.
        if (!input_type || input_type.isDynamicDim(3)) {
          return failure();
        }
        // Check if the given op is based on grouped convolution.
        // Dim size zero will be verified by the tf.Conv2D operator verification.
        if (input_type.getDimSize(3) % filter_type.getDimSize(2) != 0) {
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption_test.go

    	// evictions into account, or re-queue the PDB for another sync (by returning
    	// an error)
    	if err := dc.sync(ctx, pdbKey); err != nil {
    		t.Logf("sync() returned with error: %v", err)
    	} else {
    		t.Logf("sync() returned with no error")
    	}
    
    	// (C) Whether or not sync() returned an error, the PDB status should reflect
    	// the evictions that took place.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // +enum
    type FailurePolicyType string
    
    const (
    	// Ignore means that an error calling the webhook is ignored.
    	Ignore FailurePolicyType = "Ignore"
    	// Fail means that an error calling the webhook causes the admission to fail.
    	Fail FailurePolicyType = "Fail"
    )
    
    // ParameterNotFoundActionType specifies a failure policy that defines how a binding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

      struct HashSignatureForAndOr {
        size_t operator()(const SignatureForAndOr& signature) const {
          size_t hash = ::tensorflow::hash<Predicate::Kind>()(signature.first);
          for (Predicate* p : signature.second) {
            hash = Hash64Combine(hash, ::tensorflow::hash<Predicate*>()(p));
          }
          return hash;
        }
      };
    
      struct HashSignatureForSymbol {
        size_t operator()(const SignatureForSymbol& signature) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      explicit AssertionResult(bool success) : success_(success) {}
    
      // Returns true iff the assertion succeeded.
      operator bool() const { return success_; }  // NOLINT
    
      // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
      AssertionResult operator!() const;
    
      // Returns the text streamed into this AssertionResult. Test assertions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      explicit AssertionResult(bool success) : success_(success) {}
    
      // Returns true iff the assertion succeeded.
      operator bool() const { return success_; }  // NOLINT
    
      // Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
      AssertionResult operator!() const;
    
      // Returns the text streamed into this AssertionResult. Test assertions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    			if utyp.fields == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			if len(e.Elts) == 0 {
    				break
    			}
    			// Convention for error messages on invalid struct literals:
    			// we mention the struct type only if it clarifies the error
    			// (e.g., a duplicate field error doesn't need the struct type).
    			fields := utyp.fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    istio-system path: "/inject" caBundle: "" sideEffects: None rules: - operations: [ "CREATE" ] apiGroups: [""] apiVersions: ["v1"] resources: ["pods"] failurePolicy: Fail namespaceSelector: matchExpressions: - key: istio-injection operator: DoesNotExist - key: istio.io/rev operator: In values: - 1-6-11 --- apiVersion: policy/v1beta1 kind: PodDisruptionBudget metadata: name: istiod-1-6-11 namespace: istio-system labels: app: istiod istio.io/rev: 1-6-11 release: istio istio: pilot spec: minAvailable: 1 selector:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    				HTTPStatusCode: http.StatusBadRequest,
    			}
    		case replication.Error:
    			apiErr = APIError{
    				Code:           "MalformedXML",
    				Description:    e.Error(),
    				HTTPStatusCode: http.StatusBadRequest,
    			}
    		case tags.Error:
    			apiErr = APIError{
    				Code:           e.Code(),
    				Description:    e.Error(),
    				HTTPStatusCode: http.StatusBadRequest,
    			}
    		case policy.Error:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top