Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for 1200px (0.26 sec)

  1. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    .daterangepicker.show-ranges.single.rtl...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            logDir.mkdirs()
            def log = new File(logDir, "daemon-fake.log")
            log << "DefaultDaemonContext[uid=0000,javaHome=javaHome,javaVersion=11,daemonRegistryDir=daemonRegistryDir,pid=-9999,idleTimeout=120000,daemonOpts=daemonOpts]\n"
            log << exceptionInDaemon
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            return """
               assert info.getNumberOfBuilds() == ${numberOfBuilds}
               assert info.getNumberOfRunningDaemons() == ${numDaemons}
               assert info.getIdleTimeout() == 120000
               assert info.getStartedAt() <= System.currentTimeMillis() + 1000 //accept slight clock adjustments while the test is running
               assert info.isSingleUse() == ${singleUse}
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt

    # Test that fuzzing a target with a failure in the cache minimizes it and writes
    # the new crash to testdata/fuzz
    ! go test -fuzz=FuzzWithMinimizableCache -run=FuzzWithMinimizableCache -fuzztime=10000x
    ! stdout ^ok
    stdout 'gathering baseline coverage'
    stdout 'got the minimum size!'
    stdout 'contains a non-zero byte of length 10'
    stdout 'Failing input written to testdata[/\\]fuzz[/\\]FuzzWithMinimizableCache[/\\]'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            expected = "http://example/foo.jpg";
            assertGetThumbnailUrl(data, expected);
    
            data = "<img src=\"http://example/foo.jpg\" width=\"100px\" height=\"100px\">";
            expected = "http://example/foo.jpg";
            assertGetThumbnailUrl(data, expected);
        }
    
        private void assertGetThumbnailUrl(String data, String expected) throws Exception {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    class LeakingProcessKillPatternTest extends Specification {
    
        def "matches worker process started in test on Windows"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/git_test.go

    // For now, at least the hgrepo1 tests check the general vcs.go logic.
    
    // localGitRepo is like gitrepo1 but allows archive access
    // (although that doesn't really matter after CL 120041),
    // and has a file:// URL instead of http:// or https://
    // (which might still matter).
    var localGitRepo string
    
    // localGitURL initializes the repo in localGitRepo and returns its URL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    24438 ?        Sl     3:46 /opt/files/jdk-linux/jdk-8u161-linux-x64.tar.gz/bin/java -Dorg.gradle.daemon.idletimeout=120000 -Dorg.gradle.daemon.registry.base=/home/tcagent1/agent/work/668602365d1521fc/build/daemon -Dorg.gradle.native.dir=/home/tcagent1/agent/work/668602365d1521fc/intTestHomeDir/worker-1/native -Dorg.gradle.deprecation.trace=true -Djava.io.tmpdir=/home...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/math/big/nat_test.go

    		natFromString(strings.Repeat("1", 700)),
    	},
    	// z = 111....1 (20000 digits)
    	// x = 10^10000 + 1
    	// y = 111....1 (10000 digits)
    	{
    		natFromString(strings.Repeat("1", 20000)),
    		natFromString("1" + strings.Repeat("0", 9999) + "1"),
    		natFromString(strings.Repeat("1", 10000)),
    	},
    }
    
    func natFromString(s string) nat {
    	x, _, _, err := nat(nil).scan(strings.NewReader(s), 0, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/time/example_test.go

    	// t.Round(   1ms) = 12:15:30.918
    	// t.Round(    1s) = 12:15:31
    	// t.Round(    2s) = 12:15:30
    	// t.Round(  1m0s) = 12:16:00
    	// t.Round( 10m0s) = 12:20:00
    	// t.Round(1h0m0s) = 12:00:00
    }
    
    func ExampleTime_Truncate() {
    	t, _ := time.Parse("2006 Jan 02 15:04:05", "2012 Dec 07 12:15:30.918273645")
    	trunc := []time.Duration{
    		time.Nanosecond,
    		time.Microsecond,
    		time.Millisecond,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top