Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 220 for Colors (0.1 sec)

  1. docs/ru/docs/tutorial/testing.md

    rootdir: /home/user/code/superawesome-cli/app
    plugins: forked-1.1.3, xdist-1.31.0, cov-2.8.1
    collected 6 items
    
    ---> 100%
    
    test_main.py <span style="color: green; white-space: pre;">......                            [100%]</span>
    
    <span style="color: green;">================= 1 passed in 0.03s =================</span>
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. docs/em/docs/advanced/behind-a-proxy.md

    ### 🚚 `root_path`
    
    🏆 👉, 👆 💪 ⚙️ 📋 ⏸ 🎛 `--root-path` 💖:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    🚥 👆 ⚙️ Hypercorn, ⚫️ ✔️ 🎛 `--root-path`.
    
    !!! note "📡 ℹ"
        🔫 🔧 🔬 `root_path` 👉 ⚙️ 💼.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/cmd/trace/tasks.go

    <!DOCTYPE html>
    <title>Tasks</title>
    <style>` + traceviewer.CommonStyle + `
    .histoTime {
      width: 20%;
      white-space:nowrap;
    }
    th {
      background-color: #050505;
      color: #fff;
    }
    table {
      border-collapse: collapse;
    }
    td,
    th {
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    </style>
    <body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/podcgroupns.go

    	for scanner.Scan() {
    		token := scanner.Text()
    		substrings := strings.SplitN(token, ":", 3)
    		if len(substrings) < 3 {
    			return nil, fmt.Errorf("cgroup entry contains %v colons, but expected at least 2 colons: %q", len(substrings), token)
    		}
    		cgroups = append(cgroups, Cgroup{
    			HierarchyID:    substrings[0],
    			ControllerList: substrings[1],
    			GroupPath:      substrings[2],
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. docs/fr/docs/async.md

    Si vous utilisez des bibliothèques tierces qui nécessitent d'être appelées avec `await`, telles que :
    
    ```Python
    results = await some_library()
    ```
    Alors, déclarez vos *fonctions de chemins* avec `async def` comme ceci :
    
    ```Python hl_lines="2"
    @app.get('/')
    async def read_results():
        results = await some_library()
        return results
    ```
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/image/jpeg/writer.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package jpeg
    
    import (
    	"bufio"
    	"errors"
    	"image"
    	"image/color"
    	"io"
    )
    
    // div returns a/b rounded to the nearest integer, instead of rounded to zero.
    func div(a, b int32) int32 {
    	if a >= 0 {
    		return (a + (b >> 1)) / b
    	}
    	return -((-a + (b >> 1)) / b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

                        attributes.attribute(attr, 'red')
                    }.files
                    dependencies {
                        registerTransform(MakeRed) {
                            from.attribute(color, 'blue')
                            to.attribute(color, 'red')
                        }
                    }
                }
    
                project(':a') {
                    dependencies {
                        tools project(':d')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  8. pkg/log/scope.go

    	lock   sync.RWMutex
    )
    
    // RegisterScope registers a new logging scope. If the same name is used multiple times
    // for a single process, the same Scope struct is returned.
    //
    // Scope names cannot include colons, commas, or periods.
    func RegisterScope(name string, description string) *Scope {
    	// We only allow internal callers to set callerSkip
    	return registerScope(name, description, 0)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                            .details("When using a string to declare library coordinates, you must use a valid dependency notation")
                            .solution("Make sure that the coordinates consist of 3 parts separated by colons, e.g.: my.group:artifact:1.2");
                        if (split.size() == 2) {
                            builder.solution("To declare without a version, use '" + alias + ".module' instead, i.e.: " + alias + ".module = \"" + gav + "\"");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/behind-a-proxy.md

    Um dies zu erreichen, können Sie die Kommandozeilenoption `--root-path` wie folgt verwenden:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Falls Sie Hypercorn verwenden, das hat auch die Option `--root-path`.
    
    !!! note "Technische Details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top