Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 306 for middle3 (0.11 sec)

  1. android/guava-tests/test/com/google/common/primitives/DoubleArrayAsListTest.java

                    .named("Doubles.asList, tail subList"),
                ListTestSuiteBuilder.using(new DoublesAsListMiddleSubListGenerator())
                    .named("Doubles.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Double> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
                      CollectionSize.ONE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/go/doc/testdata/examples/issue43658.golden

    	// greatly between runs with different PRNG seeds.
    	src := rand.NewSource(1)
    
    	// The undirected graphs, friends and enemies, are the political relationships
    	// in the Middle East as described in the Slate article:
    	// http://www.slate.com/blogs/the_world_/2014/07/17/the_middle_east_friendship_chart.html
    	g, err := community.NewUndirectedLayers(friends, enemies)
    	if err != nil {
    		log.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        int daemonIdleTimeout = 200
        int periodicCheckInterval = 5
        //normally, state transition timeout must be lower than the daemon timeout
        //so that the daemon does not timeout in the middle of the state verification
        //effectively hiding some bugs or making tests fail
        int stateTransitionTimeout = daemonIdleTimeout / 2
    
        final List<GradleHandle> builds = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java

                    .named("Floats.asList, tail subList"),
                ListTestSuiteBuilder.using(new FloatsAsListMiddleSubListGenerator())
                    .named("Floats.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Float> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
                      CollectionSize.ONE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java

                    .named("Floats.asList, tail subList"),
                ListTestSuiteBuilder.using(new FloatsAsListMiddleSubListGenerator())
                    .named("Floats.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Float> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
                      CollectionSize.ONE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java

                    .named("Ints.asList, tail subList"),
                ListTestSuiteBuilder.using(new IntsAsListMiddleSubListGenerator())
                    .named("Ints.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Integer> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

        // Test that listeners added both before and after the value is available
        // get called correctly.
        for (int i = 0; i < 20; i++) {
    
          // Right in the middle start up a thread to close the latch.
          if (i == 10) {
            new Thread(() -> latch.countDown()).start();
          }
    
          future.addListener(listenerLatch::countDown, exec);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 18:30:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		// It's not okay to do:
    		//	var x SliceHeader
    		//	x.Data = uintptr(unsafe.Pointer(...))
    		//	... use x ...
    		//	p := unsafe.Pointer(x.Data)
    		// because in the middle the garbage collector doesn't
    		// see x.Data as a pointer and so x.Data may be dangling
    		// by the time we get to the conversion at the end.
    		// For now approximate by saying that *Header is okay
    		// but Header is not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. test/prove.go

    	z := x % y
    	if z <= x { // ERROR "Proved Leq64U$"
    		return 1
    	}
    	return 0
    }
    
    func issue57077(s []int) (left, right []int) {
    	middle := len(s) / 2
    	left = s[:middle] // ERROR "Proved IsSliceInBounds$"
    	right = s[middle:] // ERROR "Proved IsSliceInBounds$"
    	return
    }
    
    func issue51622(b []byte) int {
    	if len(b) >= 3 && b[len(b)-3] == '#' { // ERROR "Proved IsInBounds$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/runtime/race_s390x.s

    	// void __tsan_read_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_read_range(SB), R1
    	LMG	addr+0(FP), R3, R5
    	// pc is an interceptor address, but TSan expects it to point to the
    	// middle of an interceptor (see LLVM's SCOPED_INTERCEPTOR_RAW).
    	ADD	$2, R5
    	JMP	racecalladdr<>(SB)
    
    // func runtime·racewriterange(addr, size uintptr)
    // Called from instrumented code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top