Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for sanity (0.13 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          return getDone(future);
        }
      }
    
      private static class MyException extends Exception {}
    
      // Class hierarchy for generics sanity checks
      private static class Foo {}
    
      private static class FooChild extends Foo {}
    
      private static class Bar {}
    
      private static class BarChild extends Bar {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          return getDone(future);
        }
      }
    
      private static class MyException extends Exception {}
    
      // Class hierarchy for generics sanity checks
      private static class Foo {}
    
      private static class FooChild extends Foo {}
    
      private static class Bar {}
    
      private static class BarChild extends Bar {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:1.0
    \\--- org:bom:1.0
         \\--- compileClasspath
    
    org:leaf -> 1.0
    \\--- compileClasspath
    """
            where:
            conf << ["",
                     // this is just a sanity check. Nobody should ever write this.
                     "{ capabilities { requireCapability('org:bom-derived-platform') } }"]
        }
    
        def "shows published dependency reason"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    	g.Expect(clusters[0].TransportSocketMatches).To(HaveLen(2))
    
    	// For 9090, use the TLS settings are explicitly specified in DR (which disable TLS)
    	g.Expect(getTLSContext(t, clusters[1])).To(BeNil())
    
    	// Sanity check: make sure TLS is not accidentally added to other clusters.
    	for i := 2; i < len(clusters); i++ {
    		cluster := clusters[i]
    		g.Expect(getTLSContext(t, cluster)).To(BeNil())
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	// the channel close
    	kubelet.resyncInterval = time.Second * 30
    
    	ch := make(chan kubetypes.PodUpdate)
    	close(ch)
    
    	// sanity check (also prevent this test from hanging in the next step)
    	ok := kubelet.syncLoopIteration(ctx, ch, kubelet, make(chan time.Time), make(chan time.Time), make(chan *pleg.PodLifecycleEvent, 1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller_test.go

    	newDS.UID = uuid.NewUUID()
    	newDS, err = client.AppsV1().DaemonSets(newDS.Namespace).Create(context.Background(), newDS, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Sanity check
    	if newDS.UID == oldDS.UID {
    		t.Fatal("New DS has the same UID as the old one!")
    	}
    
    	waitForQueueLength(1, "recreated DS")
    	ok = dsc.processNextWorkItem(context.TODO())
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

            return op.emitOpError()
                   << "requires 0 <= begin[i] <= begin[i] + size[i] <= Di";
          }
          ++dim;
        }
      } else if (input_ty) {
        // If the inputs are ranked, we can do a few more sanity checks.
        DenseIntElementsAttr slice_sizes;
        if (matchPattern(op.getSize(), m_Constant(&slice_sizes))) {
          auto input_shape = input_ty.getShape();
          for (int64_t i = 0; i < input_ty.getRank(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	srcfiles = append(srcfiles, cfiles...)
    	srcfiles = append(srcfiles, cxxfiles...)
    	b.cacheSrcFiles(a, srcfiles)
    
    	// Running cgo generated the cgo header.
    	need &^= needCgoHdr
    
    	// Sanity check only, since Package.load already checked as well.
    	if len(gofiles) == 0 {
    		return &load.NoGoError{Package: p}
    	}
    
    	// Prepare Go vet config if needed.
    	if need&needVet != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    		// so as to stress test the code that handles multiple text sections.
    		var textSizelimit uint64 = thearch.TrampLimit
    		if *FlagDebugTextSize != 0 {
    			textSizelimit = uint64(*FlagDebugTextSize)
    		}
    
    		// Sanity check: make sure the limit is larger than any
    		// individual text symbol.
    		if funcsize > textSizelimit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  10. src/database/sql/sql_test.go

    		if err != nil {
    			t.Errorf("Error closing fakeConn: %v", err)
    		}
    	})
    	db.mu.Lock()
    	for i, dc := range db.freeConn {
    		if n := len(dc.openStmt); n > 0 {
    			// Just a sanity check. This is legal in
    			// general, but if we make the tests clean up
    			// their statements first, then we can safely
    			// verify this is always zero here, and any
    			// other value is a leak.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top