Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for emph (0.06 sec)

  1. src/cmd/vendor/rsc.io/markdown/inline.go

    	for _, c := range x.Inner {
    		c.PrintText(buf)
    	}
    }
    
    type Emph struct {
    	Marker string
    	Inner  []Inline
    }
    
    func (*Emph) Inline() {}
    
    func (x *Emph) PrintHTML(buf *bytes.Buffer) {
    	buf.WriteString("")
    	for _, c := range x.Inner {
    		c.PrintHTML(buf)
    	}
    	buf.WriteString("")
    }
    
    func (x *Emph) printMarkdown(buf *bytes.Buffer) {
    	buf.WriteString(x.Marker)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/link.go

    // https://github.github.com/gfm/#autolinks-extension-
    
    // autoLinkMore rewrites any extended autolinks in the body
    // and returns the result.
    //
    // body is a list of Plain, Emph, Strong, and Del nodes.
    // Two Plains only appear consecutively when one is a
    // potential emphasis marker that ended up being plain after all, like "_" or "**".
    // There are no Link nodes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/StringUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCamelize() throws Exception {
            assertNull(StringUtil.camelize(null));
            assertEquals("Emp", StringUtil.camelize("EMP"));
            assertEquals("AaaBbb", StringUtil.camelize("AAA_BBB"));
            assertEquals("UserId", StringUtil.camelize("USER_ID"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse_test.go

    	{`x{9876543210`, `str{x{9876543210}`},
    	{`x{9876543210,`, `str{x{9876543210,}`},
    	{`x{2,1`, `str{x{2,1}`},
    	{`x{1,9876543210`, `str{x{1,9876543210}`},
    	{``, `emp{}`},
    	{`|`, `emp{}`}, // alt{emp{}emp{}} but got factored
    	{`|x|`, `alt{emp{}lit{x}emp{}}`},
    	{`.`, `dot{}`},
    	{`^`, `bol{}`},
    	{`$`, `eol{}`},
    	{`\|`, `lit{|}`},
    	{`\(`, `lit{(}`},
    	{`\)`, `lit{)}`},
    	{`\*`, `lit{*}`},
    	{`\+`, `lit{+}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        public static final String ALSO_MAKE = "am";
    
        public static final String ALSO_MAKE_DEPENDENTS = "amd";
    
        public static final String LOG_FILE = "l";
    
        public static final String ENCRYPT_MASTER_PASSWORD = "emp";
    
        public static final String ENCRYPT_PASSWORD = "ep";
    
        public static final String THREADS = "T";
    
        public static final String BUILDER = "b";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    		!le.IsLeader() {
    		if le.config.KeyComparison != nil && le.config.KeyComparison(oldLeaderElectionRecord.HolderKey) {
    			// Lock is held and not expired, but our key is higher than the existing one.
    			// We will pre-empt the existing leader.
    			// nolint: lll
    			klog.V(4).Infof("lock is held by %v with key %v, but our key (%v) evicts it", oldLeaderElectionRecord.HolderIdentity, oldLeaderElectionRecord.HolderKey, le.config.Lock.Key())
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    eisenbahn.museum ekloges.cy elasticbeanstalk.com elblag.pl elburg.museum elementor.cloud elementor.cool elk.pl elvendrell.museum elverum.no email emb.kw embaixada.st embetsu.hokkaido.jp embroidery.museum emerck emergency.aero emilia-romagna.it emiliaromagna.it emp.br empresa.bo emr.it en-root.fr en.it ena.gifu.jp encoreapi.com encr.app encyclopedic.museum endofinternet.net endofinternet.org endoftheinternet.org enebakk.no energy enf.br eng.br eng.pro engerdal.no engine.aero engineer engineer.aero engineering...
    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