Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 264 for corerest (0.45 sec)

  1. pkg/controlplane/reconcilers/endpointsadapter_test.go

    			// No error when we need to create the Endpoints but the correct
    			// EndpointSlice already exists
    			expectedError:  nil,
    			expectedResult: endpoints1,
    			expectCreate:   []runtime.Object{endpoints1},
    			initialState:   []runtime.Object{epSlice1},
    			namespaceParam: endpoints1.Namespace,
    			endpointsParam: endpoints1,
    		},
    		"existing-endpointslice-correct": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            cost == remoteAnswer
    
            where:
            remoteAnswer << MetadataFetchingCost.values()
        }
    
        def "estimates cost for missing metadata is correct (remote says #remoteAnswer, must refresh = #mustRefreshMissingModule)"() {
            def module = Mock(ModuleComponentIdentifier)
            def localAccess = repo.localAccess
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

    // CHECK: return %[[DEQUANT]] : tensor<1x3x3x4xf32>
    
      // The following uniform_quantize & uniform_dequantize functions do NOT have
      // the correct body. Only the type signatures matter for testing.
      func.func private @uniform_quantize_0(%arg0: tensor<1x3x3x4xf32>, %arg1: tensor<1x1x1x1xf32>, %arg2: tensor<1x1x1x1xi8>) -> tensor<1x3x3x4xi8> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  4. src/go/printer/printer_test.go

    const (
    	export checkMode = 1 << iota
    	rawFormat
    	normNumber
    	idempotent
    	allowTypeParams
    )
    
    // format parses src, prints the corresponding AST, verifies the resulting
    // src is syntactically correct, and returns the resulting src or an error
    // if any.
    func format(src []byte, mode checkMode) ([]byte, error) {
    	// parse src
    	f, err := parser.ParseFile(fset, "", src, parser.ParseComments)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/BUILD

        ],
        defines = if_llvm_x86_available(["TF_LLVM_X86_AVAILABLE=1"]),
        deps = [
            ":tfcompile_lib",
            "//tensorflow/core:lib",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:resource_loader",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",  # fixdeps: keep
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // attached as an attribute.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateMaterializePassthroughOpPass();
    
    // Replicates the TensorList init op by undoing some CSE needed for correct
    // shape assignment in shape_inference.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateReplicateTensorListInitOpsPass();
    
    // Performs Shape Inference on the TensorFlow dialect using the global registry.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

        // Currently flaky with CC enabled
        def "producer task followed by a destroyer task followed by a producer with a dependency on the first producer are run in the correct order"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFooLocal = foo.task('cleanFooLocalState').destroys('build/foo-local')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/response-model.md

    If you added the return type annotation, tools and editors would complain with a (correct) error telling you that your function is returning a type (e.g. a dict) that is different from what you declared (e.g. a Pydantic model).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        //If you're changing this you will also need to change: src/snippets/modelRules/basicRuleSourcePlugin/basicRuleSourcePlugin-model-task.out
        def "displays a report in the correct format"() {
            given:
            settingsFile << "rootProject.name = 'test'"
            buildFile << """
    
    @Managed
    public interface PasswordCredentials {
        String getUsername()
        String getPassword()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/go/types/instantiate.go

    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    		// TODO(gri) investigate if this is needed (type argument and parameter count seem to be correct here)
    		if !check.validateTArgLen(pos, orig.String(), tparams.Len(), len(targs)) {
    			return Typ[Invalid]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top