Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 1200px (0.09 sec)

  1. pkg/ctrlz/assets/static/css/all.css

    }
    
    h2 {
        font-size: 2rem;
        color: #fff;
        font-weight: 400;
        margin-bottom: 20px;
        margin-top: 30px;
        padding-bottom: 10px;
        border-bottom: 1px solid #737373
    }
    
    h3 {
        font-size: 1.85rem;
        color: #f8f8f8;
        font-weight: 500;
        letter-spacing: 1px;
        margin-bottom: 20px;
        margin-top: 30px
    }
    
    h4 {
        font-size: 1.85rem;
        color: #f8f8f8;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/base.css

        flex-wrap: wrap;
        align-items: flex-start;
        max-height: 210px; /* This matches the collapsible height above */
        margin: 0 20px;
        padding-top: 12px;
        padding-left: 0;
        list-style-type: none;
    }
    
    .site-header__navigation-item {
        flex: 0 1 auto;
        font-size: 16px;
        width: 250px;
    }
    
    .site-header__navigation-item .site-header__navigation-link {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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