Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isMatching (0.27 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. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      func.return
    }
    
    // -----
    
    // Mismatching batch dimensions.
    func.func @testBatchMatMul(%lhs: tensor<1x3x5xf32>, %rhs: tensor<2x5x7xf32>) {
      // expected-error @+1 {{found mismatching batch dimensions for lhs shape 'tensor<1x3x5xf32>' and rhs shape 'tensor<2x5x7xf32>'}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i)  = ceil( ServerCL...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    "description": "`nominalConcurrencyShares` (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level. This is the number of execution seats nominally reserved for this priority level. This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism. The server's concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:\n\nNominalCL(i)  = ceil( ServerCL...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  9. 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