Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for Style (0.07 sec)

  1. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    width: 175px !important;
    }
    }
    </style>
    </head>
    <body bgcolor="#e1e8ed" style="margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;">
    <table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#e1e8ed" style="background-color:#e1e8ed;padding:0;margin:0;line-height:1px;font-size:1px;" class="body_wrapper">
    <tbody>
    <tr>
    <td align="center" style="padding:0;margin:0;line-height:1px;font-size:1px;">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  2. docs/en/docs/fastapi-cli.md

     │                          │
     │  <span style="background-color:#272822"><font color="#FF4689">from</font></span><span style="background-color:#272822"><font color="#F8F8F2"> main </font></span><span style="background-color:#272822"><font color="#FF4689">import</font></span><span style="background-color:#272822"><font color="#F8F8F2"> app</font></span><span style="background-color:#272822">  </span>  │
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. docs/ur/docs/benchmarks.md

    درجہ بندی کی طرح ہے:
    
    <ul style="direction: rtl;">
        <li><div style="text-align: right;">ASGI :<b>Uvicorn</b> سرور</div></li>
        <ul>
            <li><div style="text-align: right;"><b>Starlette</b>:  (Uvicorn استعمال کرتا ہے) ایک ویب مائیکرو فریم ورک </div></li>
            <ul>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 05 08:24:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/StyledTable.java

        }
    
        public static final class Row {
            public final List<String> text;
            public final StyledTextOutput.Style style;
    
            public Row(List<String> text, StyledTextOutput.Style style) {
                this.text = ImmutableList.copyOf(text);
                this.style = style;
            }
        }
    
        public static final class Renderer extends ReportRenderer<StyledTable, StyledTextOutput> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 21:03:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. docs/pt/docs/fastapi-cli.md

     │                          │
     │  <span style="background-color:#272822"><font color="#FF4689">from</font></span><span style="background-color:#272822"><font color="#F8F8F2"> main </font></span><span style="background-color:#272822"><font color="#FF4689">import</font></span><span style="background-color:#272822"><font color="#F8F8F2"> app</font></span><span style="background-color:#272822">  </span>  │
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/transfer/AbstractMavenTransferListener.java

            message.append(action).style(STYLE).append(' ').append(direction).append(' ');
            message.resetStyle().append(resource.getRepositoryId());
            message.style(STYLE).append(": ").append(resource.getRepositoryUrl());
            message.resetStyle().append(resource.getResourceName());
            message.style(STYLE).append(" (").append(format.format(contentLength));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    			`<style>{{"p"}} { color: pink }</style>`,
    			`<style>p { color: pink }</style>`,
    		},
    		{
    			"styleIDPassed",
    			`<style>p{{"#my-ID"}} { font: Arial }</style>`,
    			`<style>p#my-ID { font: Arial }</style>`,
    		},
    		{
    			"styleClassPassed",
    			`<style>p{{".my_class"}} { font: Arial }</style>`,
    			`<style>p.my_class { font: Arial }</style>`,
    		},
    		{
    			"styleQuantityPassed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

                "",
                ["a", "b"],
                [
                    new StyledTable.Row(["foo", "bar"], StyledTextOutput.Style.Normal),
                    new StyledTable.Row(["very long", "short"], StyledTextOutput.Style.Normal),
                    new StyledTable.Row(["tiny", "even longer"], StyledTextOutput.Style.Normal)
                ]
            )
    
            expect:
            StyledTableUtil.toString(table) == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingBackedStyledTextOutput.java

        private Style style = Style.Normal;
    
        public LoggingBackedStyledTextOutput(OutputEventListener listener, String category, LogLevel logLevel, Clock clock) {
            this.listener = listener;
            this.category = category;
            this.logLevel = logLevel;
            this.clock = clock;
        }
    
        @Override
        protected void doStyleChange(Style style) {
            if (buffer.length() > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Span.java

    public class Span implements Serializable {
        private final Style style;
        private final String text;
    
        public Span(Style style, String text) {
            this.style = style;
            this.text = text;
        }
    
        public Span(String text) {
            this(Style.NORMAL, text);
        }
    
        public Style getStyle() {
            return style;
        }
    
        public String getText() {
            return text;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top