Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 276 for badger (0.13 sec)

  1. test/typeparam/adder.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 559 bytes
    - Viewed (0)
  2. pkg/ledger/ledger.go

    )
    
    // Ledger exposes a modified map with three unique characteristics:
    // 1. every unique state of the map is given a unique hash
    // 2. prior states of the map are retained for a fixed period of time
    // 2. given a previous hash, we can retrieve a previous state from the map, if it is still retained.
    type Ledger interface {
    	// Put adds or overwrites a key in the Ledger
    	Put(key, value string) (string, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pilot/pkg/status/distribution/ledger.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/ledger"
    )
    
    func tryLedgerPut(configLedger ledger.Ledger, obj config.Config) {
    	key := obj.Key()
    	if _, err := configLedger.Put(key, strconv.FormatInt(obj.Generation, 10)); err != nil {
    		scope.Errorf("Failed to update %s in ledger, status will be out of date.", key)
    	}
    }
    
    func tryLedgerDelete(configLedger ledger.Ledger, obj config.Config) {
    	key := obj.Key()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/badgo.txt

    go get example.net/badgo@v1.0.0
    go get example.net/badgo@v1.1.0
    go get example.net/badgo@v1.2.0
    go get example.net/badgo@v1.3.0
    go get example.net/badgo@v1.4.0
    go get example.net/badgo@v1.5.0
    ! go get example.net/badgo@v1.6.0
    stderr 'invalid go version .X.Y.: must match format 1.23'
    
    -- go.mod --
    module m
    
    replace (
    	example.net/badgo v1.0.0 => ./v1.0.0
    	example.net/badgo v1.1.0 => ./v1.1.0
    	example.net/badgo v1.2.0 => ./v1.2.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 15:33:24 UTC 2021
    - 985 bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

            FROM_CACHE("FROM-CACHE", "badge badge-info", "The test is not really executed - its results are fetched from build cache."),
            FAILED("FAILED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
            NEARLY_FAILED("NEARLY-FAILED", "badge badge-warning", "Regression confidence > 90%, we're going to fail soon."),
            REGRESSED("REGRESSED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/bigger-applications.md

    # Bigger Applications - Multiple Files
    
    If you are building an application or a web API, it's rarely the case that you can put everything on a single file.
    
    **FastAPI** provides a convenience tool to structure your application while keeping all the flexibility.
    
    !!! info
        If you come from Flask, this would be the equivalent of Flask's Blueprints.
    
    ## An example file structure
    
    Let's say you have a file structure like this:
    
    ```
    .
    ├── app
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/bigger-applications.md

    * 📤 📁 `app/internal/` ⏮️ ➕1️⃣ 📁 `__init__.py`, ⚫️ ➕1️⃣ "🐍 📦": `app.internal`.
    *  &amp; 📁 `app/internal/admin.py` ➕1️⃣ 🔁: `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.svg">
    
    🎏 📁 📊 ⏮️ 🏤:
    
    ```
    .
    ├── app                  # "app" is a Python package
    │   ├── __init__.py      # this file makes "app" a "Python package"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. docs/en/docs/img/sponsors/imgwhale-banner.svg

    imgwhale-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 25 19:49:44 UTC 2022
    - 105.4K bytes
    - Viewed (0)
  9. ReadMe.md

    [![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
    [![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.jetbrains.com/scans?search.rootProjectNames=Kotlin)
    
    # Kotlin Programming Language
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/bigger-applications.md

    * 还有一个子目录 `app/internal/` 包含另一个 `__init__.py` 文件,因此它是又一个「Python 子包」:`app.internal`。
    * `app/internal/admin.py` 是另一个子模块:`app.internal.admin`。
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/bigger-applications/package.svg">
    
    带有注释的同一文件结构:
    
    ```
    .
    ├── app                  # 「app」是一个 Python 包
    │   ├── __init__.py      # 这个文件使「app」成为一个 Python 包
    │   ├── main.py          # 「main」模块,例如 import app.main
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top