Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 386 for circle (0.2 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2466          ; mapped                 ; 0037          # 1.1  CIRCLED DIGIT SEVEN
    2467          ; mapped                 ; 0038          # 1.1  CIRCLED DIGIT EIGHT
    2468          ; mapped                 ; 0039          # 1.1  CIRCLED DIGIT NINE
    2469          ; mapped                 ; 0031 0030     # 1.1  CIRCLED NUMBER TEN
    246A          ; mapped                 ; 0031 0031     # 1.1  CIRCLED NUMBER ELEVEN
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        font-size:1.1em;
        display:inline;
        font-weight:bold;
    }
    dl.name-value > dd {
        margin:0 0 0 1px;
        font-size:1.1em;
        display:inline;
    }
    /*
     * Styles for lists.
     */
    li.circle {
        list-style:circle;
    }
    ul.horizontal li {
        display:inline;
        font-size:0.9em;
    }
    div.inheritance {
        margin:0;
        padding:0;
    }
    div.inheritance div.inheritance {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. src/go/printer/printer_test.go

    // is incorrect.
    func TestBadComments(t *testing.T) {
    	t.Parallel()
    	const src = `
    // first comment - text and position changed by test
    package p
    import "fmt"
    const pi = 3.14 // rough circle
    var (
    	x, y, z int = 1, 2, 3
    	u, v float64
    )
    func fibo(n int) {
    	if n < 2 {
    		return n /* seed values */
    	}
    	return fibo(n-1) + fibo(n-2)
    }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    	margin-left: 1.25em;
    	margin-bottom: 0;
    	font-size: 1em;
    	/* Override nested font-size change */
    }
    
    ul.square li ul,
    ul.circle li ul,
    ul.disc li ul {
    	list-style: inherit;
    }
    
    ul.square {
    	list-style-type: square;
    }
    
    ul.circle {
    	list-style-type: circle;
    }
    
    ul.disc {
    	list-style-type: disc;
    }
    
    ul.no-bullet {
    	list-style: none;
    }
    
    /* Ordered Lists */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    1 6 6 11"/></svg>',"search-icon":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="9" cy="9" r="7"/><path fill="none" stroke="#000" stroke-width="1.1" d="M14,14 L18,18 L14,14 Z"/></svg>',"search-large":'<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.8" cx="17.5" cy="17.5" r="16.5"/><line fill="none" stroke="#000" stroke-width="1.8"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: &lt;/ul&gt; */
        public static final String ERRORS_FOOTER = "{errors.footer}";
    
        /** The key of the message: &lt;li&gt;&lt;i class="fa fa-exclamation-circle"&gt;&lt;/i&gt; */
        public static final String ERRORS_PREFIX = "{errors.prefix}";
    
        /** The key of the message: &lt;/li&gt; */
        public static final String ERRORS_SUFFIX = "{errors.suffix}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    ==undefined)continue;const color=this.getDataSeries(key).color;const circle=document.createElementNS('http://www.w3.org/2000/svg','circle');circle.setAttribute('cx',this.xScale_(x));circle.setAttribute('cy',this.yScale_(this.dataRange.clamp(value)));circle.setAttribute('r',5);circle.style.fill=color;circle.datum=datum;circle.key=key;circle.value=datum[key];circle.leftPx=this.xScale_(x);circle.widthPx=0;circle.color=color;circle.topPx=this.yScale_(this.dataRange.clamp(value));circle.heightPx=0;ci...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  8. src/os/exec/exec.go

    	if overage := len(p) - w.N; overage > 0 {
    		p = p[overage:]
    		w.skipped += int64(overage)
    	}
    	p = w.fill(&w.suffix, p)
    
    	// w.suffix is full now if p is non-empty. Overwrite it in a circle.
    	for len(p) > 0 { // 0, 1, or 2 iterations.
    		n := copy(w.suffix[w.suffixOff:], p)
    		p = p[n:]
    		w.skipped += int64(n)
    		w.suffixOff += n
    		if w.suffixOff == w.N {
    			w.suffixOff = 0
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // chrome : 2014-07-24 Charleston Road Registry Inc.
    chrome
    
    // church : 2014-02-06 Binky Moon, LLC
    church
    
    // cipriani : 2015-02-19 Hotel Cipriani Srl
    cipriani
    
    // circle : 2014-12-18 Amazon Registry Services, Inc.
    circle
    
    // cisco : 2014-12-22 Cisco Technology, Inc.
    cisco
    
    // citadel : 2015-07-23 Citadel Domain LLC
    citadel
    
    // citi : 2015-07-30 Citigroup Inc.
    citi
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    christiansburg.museum christmas chrome chtr.k12.ma.us chu.jp chungbuk.kr chungnam.kr chuo.chiba.jp chuo.fukuoka.jp chuo.osaka.jp chuo.tokyo.jp chuo.yamanashi.jp church ci ci.it ciao.jp ciencia.bo cieszyn.pl cim.br cincinnati.museum cinema.museum cipriani circle circus.museum cisco ciscofreak.com cistron.nl citadel citi citic city city.hu cityeats civilaviation.aero civilisation.museum civilization.museum civilwar.museum ck.ua cl cl.it claims clan.rip cleaning clerk.app clerkstage.app cleverapps.io click clicketcloud.com...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top