Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,319 for STYLE (0.04 sec)

  1. test/fixedbugs/issue31747.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // numeric literals
    const (
    	_ = 1_000 // ERROR "underscore in numeric literal requires go1.13 or later \(-lang was set to go1.12; check go.mod\)|requires go1.13"
    	_ = 0b111 // ERROR "binary literal requires go1.13 or later"
    	_ = 0o567 // ERROR "0o/0O-style octal literal requires go1.13 or later"
    	_ = 0xabc // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    ```bash
    pip install pylint
    pylint --rcfile=tensorflow/tools/ci_build/pylintrc myfile.py
    ```
    
    Note `pylint --rcfile=tensorflow/tools/ci_build/pylintrc` should run from the
    top level tensorflow directory.
    
    #### Coding style for other languages
    
    *   [Google Java Style Guide](https://google.github.io/styleguide/javaguide.html)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

        /**
         * Creates file/directory access permissions and initializes them via a Unix style permission string.
         * For details see {@link ConfigurableFilePermissions#unix(String)}.
         * <p>
         * Doesn't have separate variants for files and directories, like other configuration methods,
         * because the Unix style permission input completely overwrites the default values, so
         * the distinction doesn't matter.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. docs/fa/docs/index.md

    ---
    hide:
      - navigation
    ---
    
    <style>
    .md-content .md-typeset h1 { display: none; }
    </style>
    
    <p align="center">
      <a href="https://fastapi.tiangolo.com"><img src="https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png" alt="FastAPI"></a>
    </p>
    <p align="center">
        فریم‌ورک FastAPI، کارایی بالا، یادگیری آسان، کدنویسی سریع، آماده برای استفاده در محیط پروداکشن
    </p>
    <p align="center">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/IncompatibleArtifactVariantsFailureDescriber.java

            AttributeDescriber describer = AttributeDescriberSelector.selectDescriber(failure.getRequestedAttributes(), schema);
            TreeFormatter formatter = new TreeFormatter();
            formatter.node("No variants of " + style(StyledTextOutput.Style.Info, failure.getRequestedName()) + " match the consumer attributes");
            formatter.startChildren();
            for (AssessedCandidate assessedCandidate : failure.getCandidates()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. docs/tr/docs/tutorial/first-steps.md

    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    <span style="color: green;">INFO</span>:     Waiting for application startup.
    <span style="color: green;">INFO</span>:     Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Feb 08 13:10:55 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. docs/ru/docs/tutorial/first-steps.md

    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    <span style="color: green;">INFO</span>:     Waiting for application startup.
    <span style="color: green;">INFO</span>:     Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/templates/index.html

    {% block metas %}
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    {% endblock %}
    
    {% block styles %}
    <style>
        table {
            color: #333;
            background: white;
            border: 1px solid grey;
            font-size: 12pt;
            border-collapse: collapse;
            width: 100%;
        }
    
        table thead th,
        table tfoot th {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/task/ShowToolchainsTask.java

    import static org.gradle.api.internal.lambdas.SerializableLambdas.spec;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Description;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Identifier;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Normal;
    
    @UntrackedTask(because = "Produces only non-cacheable console output")
    public abstract class ShowToolchainsTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Description;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Failure;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Header;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Identifier;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Info;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top