Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for 11000101 (0.2 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

                    [
                        id: '1450575490',
                        branch: 'master',
                        date: '1970-01-01',
                        commits: ['123456']
                    ],
                    [
                        id: '1450575490',
                        branch: 'master',
                        date: '1970-01-01',
                        commits: ['123456']
                    ]
                ],
                totalTime: [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

        }
    
        public void test_getUserAgentType_FireFox() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0");
            assertEquals(UserAgentType.FIREFOX, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Safari() {
            getMockRequest().addHeader("user-agent",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/FakeTickerTest.java

        FakeTicker ticker = new FakeTicker();
        assertEquals(0, ticker.read());
        assertSame(ticker, ticker.advance(10));
        assertEquals(10, ticker.read());
        ticker.advance(1, TimeUnit.MILLISECONDS);
        assertEquals(1000010L, ticker.read());
        ticker.advance(Duration.ofMillis(1));
        assertEquals(2000010L, ticker.read());
      }
    
      public void testAutoIncrementStep_returnsSameInstance() {
        FakeTicker ticker = new FakeTicker();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/testing/FakeTickerTest.java

        FakeTicker ticker = new FakeTicker();
        assertEquals(0, ticker.read());
        assertSame(ticker, ticker.advance(10));
        assertEquals(10, ticker.read());
        ticker.advance(1, TimeUnit.MILLISECONDS);
        assertEquals(1000010L, ticker.read());
        ticker.advance(Duration.ofMillis(1));
        assertEquals(2000010L, ticker.read());
      }
    
      public void testAutoIncrementStep_returnsSameInstance() {
        FakeTicker ticker = new FakeTicker();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParserTest.groovy

        def "parses entries with agent"() {
            def contextString = "DefaultDaemonContext[" +
                "uid=40b63fc1-2506-4fa8-bf48-1bfbfc6a457f," +
                "javaHome=/home/mlopatkin/.asdf/installs/java/temurin-11.0.16+101," +
                "javaVersion=11," +
                "daemonRegistryDir=/home/mlopatkin/gradle/local/.gradle/daemon," +
                "pid=1120028," +
                "idleTimeout=10800000," +
                "priority=NORMAL," +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_libinit.c

    		err = pthread_create(thread, attr, pfn, arg);
    		if (err == 0) {
    			pthread_detach(*thread);
    			return 0;
    		}
    		if (err != EAGAIN) {
    			return err;
    		}
    		ts.tv_sec = 0;
    		ts.tv_nsec = (tries + 1) * 1000 * 1000; // Milliseconds.
    		nanosleep(&ts, nil);
    	}
    	return EAGAIN;
    }
    
    static void
    pthread_key_destructor(void* g) {
    	if (x_crosscall2_ptr != NULL) {
    		// fn == NULL means dropm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/runtime/histogram.go

    	//
    	// As an example, consider the configuration:
    	//
    	//    timeHistMinBucketBits = 9
    	//    timeHistMaxBucketBits = 48
    	//    timeHistSubBucketBits = 2
    	//
    	// Then:
    	//
    	//    011000001
    	//    ^--
    	//    │ ^
    	//    │ └---- Next 2 bits -> sub-bucket 3
    	//    └------- Bit 9 unset -> bucket 0
    	//
    	//    110000001
    	//    ^--
    	//    │ ^
    	//    │ └---- Next 2 bits -> sub-bucket 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. pkg/log/config.go

    	buf[16] = ':'
    	buf[17] = byte((second)/10) + '0'
    	buf[18] = byte((second)%10) + '0'
    	buf[19] = '.'
    	buf[20] = byte((micros/100000)%10) + '0'
    	buf[21] = byte((micros/10000)%10) + '0'
    	buf[22] = byte((micros/1000)%10) + '0'
    	buf[23] = byte((micros/100)%10) + '0'
    	buf[24] = byte((micros/10)%10) + '0'
    	buf[25] = byte((micros)%10) + '0'
    	buf[26] = 'Z'
    
    	enc.AppendString(string(buf))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        assertThrows(IllegalArgumentException.class, () -> source.slice(0, -1));
    
        assertCorrectSlice(0, 0, 0, 0);
        assertCorrectSlice(0, 0, 1, 0);
        assertCorrectSlice(100, 0, 10, 10);
        assertCorrectSlice(100, 0, 100, 100);
        assertCorrectSlice(100, 5, 10, 10);
        assertCorrectSlice(100, 5, 100, 95);
        assertCorrectSlice(100, 100, 0, 0);
        assertCorrectSlice(100, 100, 10, 0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/intervals.go

    // license that can be found in the LICENSE file.
    
    package liveness
    
    // This file defines an "Intervals" helper type that stores a
    // sorted sequence of disjoint ranges or intervals. An Intervals
    // example: { [0,5) [9-12) [100,101) }, which corresponds to the
    // numbers 0-4, 9-11, and 100. Once an Intervals object is created, it
    // can be tested to see if it has any overlap with another Intervals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top