Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for correctness (0.42 sec)

  1. src/index/suffixarray/suffixarray_test.go

    		}
    		b.Run(fmt.Sprintf("bits=%d", bits), func(b *testing.B) {
    			cleanup := setBits(bits)
    			defer cleanup()
    
    			b.StopTimer()
    			x := New(data)
    			size := testSaveRestore(nil, nil, x)       // verify correctness
    			buf := bytes.NewBuffer(make([]byte, size)) // avoid growing
    			b.SetBytes(int64(size))
    			b.StartTimer()
    			b.ReportAllocs()
    			for i := 0; i < b.N; i++ {
    				buf.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    A contrived build can be created (e.g. programmatically, or from a template) that exercises the “logic under test”. The build can then be executed, potentially in a variety of ways (e.g. different combinations of tasks and arguments). The correctness of the logic can then be verified by asserting the following, potentially in combination:
    
    * The build's output;
    * The build's logging (i.e. console output);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // The tests in this package focus on the correctness of its implementation of
    // runtime.Serializer. The specific behavior of marshaling Go values to CBOR bytes and back is
    // tested in the ./internal/modes package, which is used both by the Serializer implementation and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    //     should not precede with the endpoint, or inaccurate information would be sent which may have impacts on
    //     correctness and security.
    //
    // Note: this is only used by endpointslice controller
    func getPod(c *Controller, ip string, ep *metav1.ObjectMeta, targetRef *corev1.ObjectReference, host host.Name) (*corev1.Pod, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            then:
            result.execution.get().outcome == EXECUTED_NON_INCREMENTALLY
            !result.reusedOutputOriginMetadata.present
            result.executionReasons == ["Incremental execution has been disabled to ensure correctness. Please consult deprecation warnings for more details."]
        }
    
        def "out of date when output file removed"() {
            given:
            execute(unitOfWork)
    
            when:
            outputFile.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ----
    
    [[functional-tests]]
    === Implementing functional tests
    
    Functional tests verify the correctness of the plugin end-to-end.
    In practice, this means applying, configuring, and executing the functionality of the plugin implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    Usually you want `go:nowritebarrierrec`. `go:nowritebarrier` is
    primarily useful in situations where it's "nice" not to have write
    barriers, but not required for correctness.
    
    go:nowritebarrierrec and go:yeswritebarrierrec
    ----------------------------------------------
    
    `go:nowritebarrierrec` directs the compiler to emit an error if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            }
    
            // TODO(https://github.com/gradle/gradle/issues/22494) ValueSources become part of the fingerprint even if they are only obtained
            //  inside other value sources. This is not really necessary for the correctness and causes excessive cache invalidation.
            when (val parameters = obtainedValue.valueSourceParameters) {
                is FileContentValueSource.Parameters -> {
                    parameters.file.orNull?.asFile?.let { file ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            }
    
            when:
            withBuildCache().run "invalid", "--info"
            then:
            outputContains("""|Caching disabled for task ':invalid' because:
                |  Caching has been disabled to ensure correctness. Please consult deprecation warnings for more details.
            """.stripMargin())
            executedAndNotSkipped(":invalid")
        }
    
        private static String defineCachedTask(String suffix = "") {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/convert.go

    	//
    	// However, this is more than just an optimization: if T is a
    	// zero-length array, then x (and thus (*T)(x)) can be nil, but T(x)
    	// should *not* panic. So suppressing the nil check here is
    	// necessary for correctness in that case.
    	deref.SetBounded(true)
    
    	return walkExpr(deref, init)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top