Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for emphasize (0.14 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. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    			cumValue,
    			strings.TrimSpace(measurement.Percentage(cum, b.config.Total)))
    	}
    
    	// Scale font sizes from 8 to 24 based on percentage of flat frequency.
    	// Use non linear growth to emphasize the size difference.
    	baseFontSize, maxFontGrowth := 8, 16.0
    	fontSize := baseFontSize
    	if maxFlat != 0 && flat != 0 && float64(abs64(flat)) <= maxFlat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableCollection.java

    @SuppressWarnings("serial") // we're overriding default serialization
    @ElementTypesAreNonnullByDefault
    // TODO(kevinb): I think we should push everything down to "BaseImmutableCollection" or something,
    // just to do everything we can to emphasize the "practically an interface" nature of this class.
    public abstract class ImmutableCollection<E> extends AbstractCollection<E> implements Serializable {
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableCollection.java

    @SuppressWarnings("serial") // we're overriding default serialization
    @ElementTypesAreNonnullByDefault
    // TODO(kevinb): I think we should push everything down to "BaseImmutableCollection" or something,
    // just to do everything we can to emphasize the "practically an interface" nature of this class.
    public abstract class ImmutableCollection<E> extends AbstractCollection<E> implements Serializable {
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Style.java

        public enum Emphasis {
            BOLD, REVERSE, ITALIC
        }
    
        public enum Color {
            DEFAULT, YELLOW, RED, GREY, GREEN, BLACK
        }
    
        public final Set<Emphasis> emphasises;
        public final Color color;
    
        public Style(Set<Emphasis> emphasises, Color color) {
            this.emphasises = emphasises;
            this.color = color;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

            then:
            format(result.docbook) == '''<para><emphasis>text</emphasis></para>'''
        }
    
        def convertsAStrongElementToAnEmphasisElement() {
            _ * classMetaData.rawCommentText >> '<strong>text</strong>'
    
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook) == '''<para><emphasis>text</emphasis></para>'''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 14.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

        private static String expected(String text) {
            return emphatize(text, "blue");
        }
    
        private static String actual(String text) {
            return emphatize(text, "#ee442f");
        }
    
        private static String warning(String text) {
            return emphatize(text, "#c59434");
        }
    
        private static String grey(String text) {
            return emphatize(text, "#cccccc");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

            /**
             * General purpose success message
             */
            Success,
            /**
             * <b>Emphasized</b> success message
             */
            SuccessHeader,
            /**
             * General purpose failure message
             */
            Failure,
            /**
             * <b>Emphasized</b> failure message
             */
            FailureHeader,
            /**
             * General purpose informational text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. 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)
Back to top