Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 492 for sanity (0.13 sec)

  1. src/runtime/race/race_windows_test.go

    import (
    	"sync/atomic"
    	"syscall"
    	"testing"
    	"unsafe"
    )
    
    func TestAtomicMmap(t *testing.T) {
    	// Test that atomic operations work on "external" memory. Previously they crashed (#16206).
    	// Also do a sanity correctness check: under race detector atomic operations
    	// are implemented inside of race runtime.
    	kernel32 := syscall.NewLazyDLL("kernel32.dll")
    	VirtualAlloc := kernel32.NewProc("VirtualAlloc")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. src/crypto/x509/root_unix_test.go

    			t.Fatalf("Failed to write certificate to file: %v", err)
    		}
    		certDirs = append(certDirs, certDir)
    	}
    
    	// Sanity check: the number of certDirs should be equal to the number of roots.
    	if g, w := len(certDirs), len(rootPEMs); g != w {
    		t.Fatalf("Failed sanity check: len(certsDir)=%d is not equal to len(rootsPEMS)=%d", g, w)
    	}
    
    	// Now finally concatenate them with a colon.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/TrustedInputFutureTest.java

      @Override
      AbstractFuture<Integer> newDelegate() {
        AbstractFuture<Integer> future = new TrustedFuture<Integer>() {};
        assertTrue(future instanceof TrustedFuture); // sanity check
        return future;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/UntrustedInputFutureTest.java

      @Override
      AbstractFuture<Integer> newDelegate() {
        AbstractFuture<Integer> future = new AbstractFuture<Integer>() {};
        assertFalse(future instanceof TrustedFuture); // sanity check
        return future;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/PackageSanityTests.java

     * limitations under the License.
     */
    
    package com.google.common.math;
    
    import com.google.common.testing.AbstractPackageSanityTests;
    
    /**
     * Basic sanity tests for the entire package.
     *
     * @author Ben Yu
     */
    
    public class PackageSanityTests extends AbstractPackageSanityTests {
      public PackageSanityTests() {
        publicApiOnly();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 901 bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/PackageSanityTests.java

     * limitations under the License.
     */
    
    package com.google.common.primitives;
    
    import com.google.common.testing.AbstractPackageSanityTests;
    
    /**
     * Tests basic sanity for each class in the package.
     *
     * @author Ben Yu
     */
    
    public class PackageSanityTests extends AbstractPackageSanityTests {
      public PackageSanityTests() {
        setDefault(String.class, "string");
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 19:03:30 UTC 2017
    - 933 bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/PackageSanityTests.java

    import com.google.common.testing.AbstractPackageSanityTests;
    import java.lang.reflect.Method;
    import java.nio.channels.FileChannel.MapMode;
    import java.nio.charset.CharsetEncoder;
    
    /**
     * Basic sanity tests for the entire package.
     *
     * @author Ben Yu
     */
    
    public class PackageSanityTests extends AbstractPackageSanityTests {
      public PackageSanityTests() {
        setDefault(BaseEncoding.class, BaseEncoding.base64());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Sep 15 13:47:32 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/hash/PackageSanityTests.java

     */
    
    package com.google.common.hash;
    
    import com.google.common.hash.BloomFilterStrategies.LockFreeBitArray;
    import com.google.common.testing.AbstractPackageSanityTests;
    
    /**
     * Basic sanity tests for the entire package.
     *
     * @author Ben Yu
     */
    
    public class PackageSanityTests extends AbstractPackageSanityTests {
      public PackageSanityTests() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 15:56:47 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  9. tests/util/sanitycheck/sanity_check.go

    	"istio.io/istio/pkg/test/scopes"
    )
    
    // RunTrafficTest deploys echo server/client and runs an Istio traffic test
    func RunTrafficTest(t framework.TestContext, ctx resource.Context) {
    	scopes.Framework.Infof("running sanity test")
    	_, client, server := SetupTrafficTest(t, ctx, "")
    	RunTrafficTestClientServer(t, client, server)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 21:20:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. cmd/clicheck/check_cli_conventions.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"fmt"
    	"io"
    	"os"
    
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    	"k8s.io/kubectl/pkg/cmd"
    	cmdsanity "k8s.io/kubectl/pkg/cmd/util/sanity"
    )
    
    func main() {
    	var errorCount int
    
    	kubectl := cmd.NewKubectlCommand(cmd.KubectlOptions{IOStreams: genericiooptions.IOStreams{In: os.Stdin, Out: io.Discard, ErrOut: io.Discard}})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top