Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,485 for corerest (0.16 sec)

  1. tests/test_response_by_alias.py

                        "proper OpenAPI use another model with the correct field names"
                    )
                }
            )
        else:
    
            class Config:
                schema_extra = {
                    "description": (
                        "response_model_by_alias=False is basically a quick hack, to support "
                        "proper OpenAPI use another model with the correct field names"
                    )
                }
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/internal/fuzz/mutator_test.go

    		10,
    		100,
    		1000,
    		10000,
    		100000,
    	} {
    		b.Run(strconv.Itoa(size), func(b *testing.B) {
    			buf := make([]byte, size)
    			b.ResetTimer()
    
    			for i := 0; i < b.N; i++ {
    				// resize buffer to the correct shape and reset the PCG
    				buf = buf[0:size]
    				m.r = newPcgRand()
    				m.mutate([]any{buf}, workerSharedMemSize)
    			}
    		})
    	}
    }
    
    func BenchmarkMutatorString(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

        ),
        deps = [
            ":renderers",
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
            "//tensorflow/core/platform:types",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue24339.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // Use a different line number for each token so we can
    // check that the error message appears at the correct
    // position.
    var _ = struct{}{ /*line :20:1*/foo /*line :21:1*/: /*line :22:1*/0 }
    
    
    
    
    
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:59:09 UTC 2022
    - 416 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/ClosureBackedRuleActionTest.groovy

                assert delegate.is(thing)
            }
    
            when:
            action(closure).execute(thing, [])
    
            then:
            called
        }
    
        def "multiple arg closure called with correct subject and correct inputs"() {
            given:
            def called = false
            String thing = "1"
            def closure = { String subject, Integer other, String another ->
                called = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/ir/BUILD

            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_sync_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_util",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:resource_loader",
            "@llvm-project//mlir:Parser",
            "@tf_runtime//:init_tfrt_dialects",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/README

    This directory holds small tests and benchmarks of code
    generated by the compiler.  This code is not for importing,
    and the tests are intended to verify that specific optimizations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 206 bytes
    - Viewed (0)
  8. releasenotes/notes/47300.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 08:26:40 UTC 2023
    - 223 bytes
    - Viewed (0)
  9. test/fixedbugs/bug435.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a syntax error caused by an unexpected EOF
    // gives an error message with the correct line number.
    //
    // https://golang.org/issue/3392
    
    package main
    
    func foo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 398 bytes
    - Viewed (0)
  10. test/fixedbugs/issue23094.go

    // errorcheck
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that the array is reported in correct notation.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 311 bytes
    - Viewed (0)
Back to top