Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isMatching (0.14 sec)

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

          int64_t y_dim = std::get<1>(dim_pairs);
          if (!ShapedType::isDynamic(x_dim) && !ShapedType::isDynamic(y_dim) &&
              x_dim != y_dim) {
            return op.emitOpError()
                   << "found mismatching batch dimensions for lhs shape " << x_ty
                   << " and rhs shape " << y_ty;
          }
        }
      } else {
        if (!OpTrait::util::getBroadcastedShape(x_batches, y_batches,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    	}
    }
    
    // mismatchingSigAlgIDPEM contains a certificate where the Certificate
    // signatureAlgorithm and the TBSCertificate signature contain
    // mismatching OIDs
    const mismatchingSigAlgIDPEM = `-----BEGIN CERTIFICATE-----
    MIIBBzCBrqADAgECAgEAMAoGCCqGSM49BAMCMAAwIhgPMDAwMTAxMDEwMDAwMDBa
    GA8wMDAxMDEwMTAwMDAwMFowADBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABOqV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    						"src1": {
    								"endpoint": "{{.URL}}/groups",
    								"access_token": "groups_token"
    						}
    				},
    				"exp": %d
    			}`, valid.Unix()),
    			claimToResponseMap: map[string]string{
    				// Note mismatching "aud"
    				"groups": fmt.Sprintf(`{
    					"iss": "{{.URL}}",
    				    "aud": "your-client",
    					"groups": ["team1", "team2"],
    					"exp": %d
    			     }`, valid.Unix()),
    			},
    			openIDConfig: `{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (output_shape[i] != ShapedType::kDynamic &&
            result_batch_shape[i] != ShapedType::kDynamic &&
            output_shape[i] != result_batch_shape[i])
          return op.emitOpError()
                 << "has mismatching input batch dimension "
                 << result_batch_shape[i] << " and output batch dimension "
                 << output_shape[i];
      }
    
      // Check output shape for non-batch dimension, following documentation below.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			}
    			contentLength = rec.Header().Get("Content-Length")
    		}
    
    		if contentLength != fmt.Sprintf("%d", objectLength(input)) {
    			t.Errorf("Test %d: Content length is mismatching: got %s (expected: %d)", i+1, contentLength, objectLength(input))
    		}
    	}
    }
    
    // Wrapper for calling GetObject API handler tests for both Erasure multiple disks and FS single drive setup.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	v.FieldByName("F") // should panic
    
    	t.Fatalf("did not panic")
    }
    
    // Given
    //	type Outer struct {
    //		*Inner
    //		...
    //	}
    // the compiler generates the implementation of (*Outer).M dispatching to the embedded Inner.
    // The implementation is logically:
    //	func (p *Outer) M() {
    //		(p.Inner).M()
    //	}
    // but since the only change here is the replacement of one pointer receiver with another,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top