Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for emphasize (0.15 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    		if as, ok := s.(*AssignStmt); ok && as.Op == 0 {
    			// Emphasize complex Lhs and Rhs of assignment with parentheses to highlight '='.
    			str = "assignment " + emphasize(as.Lhs) + " = " + emphasize(as.Rhs)
    		} else {
    			str = String(s)
    		}
    		p.syntaxErrorAt(s.Pos(), fmt.Sprintf("cannot use %s as value", str))
    	}
    
    	p.xnest = outer
    	return
    }
    
    // emphasize returns a string representation of x, with (top-level)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

            List<Color> colors = new ArrayList<Color>();
            for (Style.Emphasis emphasis : style.getEmphasises()) {
                if (emphasis.equals(Style.Emphasis.BOLD)) {
                    colors.add(newBoldColor());
                } else if (emphasis.equals(Style.Emphasis.REVERSE)) {
                    colors.add(newReverseColor());
                } else if (emphasis.equals(Style.Emphasis.ITALIC)) {
                    colors.add(newItalicColor());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/inline.go

    	case '*', '~':
    		// “A single * character can open emphasis iff
    		// it is part of a left-flanking delimiter run.”
    
    		// “A double ** can open strong emphasis iff
    		// it is part of a left-flanking delimiter run.”
    		canOpen = leftFlank
    
    		// “A single * character can close emphasis iff
    		// it is part of a right-flanking delimiter run.”
    
    		// “A double ** can close strong emphasis iff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. doc/godebug.md

    layout: article
    ---
    
    <!--
    This document is kept in the Go repo, not x/website,
    because it documents the full list of known GODEBUG settings,
    which are tied to a specific release.
    -->
    
    ## Introduction {#intro}
    
    Go's emphasis on backwards compatibility is one of its key strengths.
    There are, however, times when we cannot maintain complete compatibility.
    If code depends on buggy (including insecure) behavior,
    then fixing the bug will break that code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/base.css

        margin-top: 0;
        margin-bottom: 0.6rem;
    }
    
    .example-contents > p {
        margin: 0;
    }
    
    .example-break, .figure-break {
        display: none;
    }
    
    .exampleLocation .emphasis em {
        font-style: normal;
        font-weight: bold;
    }
    
    .appendix h1 {
        margin-bottom: 1.0em;
    }
    
    .footnote sup {
        vertical-align: baseline;
        font-size: 100%;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    of final Grid Layout. Use grid-column.",{node:f});return}else if(p==="display"&&m==="box"){t.warn("You should write display: flex by final spec instead of display: box",{node:f});return}else if(p==="text-emphasis-position")(m==="under"||m==="over")&&t.warn("You should use 2 values for text-emphasis-position For example, `under left` instead of just `under`.",{node:f});else if(/^(align|justify|place)-(items|content)$/.test(p)&&u(f))(m==="start"||m==="end")&&t.warn(`${m} value has mixed support, consider...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.logging.text.Style$Color> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Style.java:0)
    Class <org.gradle.internal.logging.text.Style$Emphasis> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Style.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top