Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 384 for sanity (0.14 sec)

  1. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/kotlin/settings.gradle.kts

    // Umbrella build for sanity check test
    rootProject.name = "testing-plugins"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 114 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/groovy/settings.gradle

    // Umbrella build for sanity check test
    rootProject.name = 'testing-plugins'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 113 bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_andor_test.go

    // implementations for all architectures.
    package atomic_test
    
    import (
    	"internal/runtime/atomic"
    	"testing"
    )
    
    func TestAnd32(t *testing.T) {
    	// Basic sanity check.
    	x := uint32(0xffffffff)
    	for i := uint32(0); i < 32; i++ {
    		old := x
    		v := atomic.And32(&x, ^(1 << i))
    		if r := uint32(0xffffffff) << (i + 1); x != r || v != old {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 27 20:49:32 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_assets.mlir

        // CHECK: "tf.InitializeTableFromTextFileV2"([[HASHTABLE]], [[CST]])
        func.return
      }
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      // Test case: Sanity check handling of non-bound inputs.
      // The pass shouldn't do anything in this case.
    
      // CHECK: func @f(%arg0
      func.func @f(%arg0: tensor<!tf_type.string> {tf_saved_model.index_path = [0]})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/SanityCheck.kt

    import vcsroots.gradlePromotionMaster
    import vcsroots.useAbsoluteVcs
    
    // Gradle_Master_Promotion_SanityCheck
    object SanityCheck : BuildType({
        id("Promotion_SanityCheck")
        name = "SanityCheck"
        description = "Sanity check for promotion project"
    
        vcs.useAbsoluteVcs(gradlePromotionMaster)
    
        steps {
            gradleWrapper {
                tasks = "tasks"
                gradleParams = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 977 bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_test.go

    	shouldPanic(t, "Xchg64", func() { atomic.Xchg64(up64, 1) })
    	shouldPanic(t, "Cas64", func() { atomic.Cas64(up64, 1, 2) })
    }
    
    func TestAnd8(t *testing.T) {
    	// Basic sanity check.
    	x := uint8(0xff)
    	for i := uint8(0); i < 8; i++ {
    		atomic.And8(&x, ^(1 << i))
    		if r := uint8(0xff) << (i + 1); x != r {
    			t.Fatalf("clearing bit %#x: want %#x, got %#x", uint8(1<<i), r, x)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/compress/flate/inflate.go

    			reverse >>= huffmanChunkBits
    			for off := reverse; off < len(linktab); off += 1 << uint(n-huffmanChunkBits) {
    				if sanity && linktab[off] != 0 {
    					panic("impossible: overwriting existing chunk")
    				}
    				linktab[off] = chunk
    			}
    		}
    	}
    
    	if sanity {
    		// Above we've sanity checked that we never overwrote
    		// an existing entry. Here we additionally check that
    		// we filled the tables completely.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/PackageSanityTests.java

     * limitations under the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.testing.AbstractPackageSanityTests;
    
    /** Basic sanity tests for classes in {@code common.base}. */
    
    @GwtIncompatible
    public class PackageSanityTests extends AbstractPackageSanityTests {
      public PackageSanityTests() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 10 08:40:05 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. .github/workflows/contributor-pr.yml

        outputs:
          matrix: ${{ steps.setup-matrix.outputs.matrix }}
          sys-prop-args: ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }}
    
      sanity-check:
        name: "Sanity Check on Linux"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        needs: build
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - name: setup java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_solaris_amd64.c

    	// Correct that as best we can: assume it's at least 1 MB.
    	// See golang.org/issue/12210.
    	if(ctx.uc_stack.ss_size < 1024*1024)
    		g->stacklo -= 1024*1024 - ctx.uc_stack.ss_size;
    
    	// Sanity check the results now, rather than getting a
    	// morestack on g0 crash.
    	if (g->stacklo >= g->stackhi) {
    		fatalf("bad stack bounds: lo=%p hi=%p", (void*)(g->stacklo), (void*)(g->stackhi));
    	}
    }
    
    void
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 14:57:16 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top