Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for funding (0.19 sec)

  1. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied.
      // +optional
      optional ParamRef paramRef = 2;
    
      // MatchResources declares what resources match this binding and will be validated by it.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional ContainerStateWaiting waiting = 1;
    
      // Details about a running container
      // +optional
      optional ContainerStateRunning running = 2;
    
      // Details about a terminated container
      // +optional
      optional ContainerStateTerminated terminated = 3;
    }
    
    // ContainerStateRunning is a running state of a container.
    message ContainerStateRunning {
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ModuleIdentityExtension.kt

    import gradlebuild.identity.tasks.BuildReceipt
    import org.gradle.api.model.ObjectFactory
    import org.gradle.api.provider.Property
    import org.gradle.api.tasks.TaskContainer
    import org.gradle.api.tasks.bundling.Jar
    import org.gradle.kotlin.dsl.*
    import org.gradle.util.GradleVersion
    
    
    abstract class ModuleIdentityExtension(val tasks: TaskContainer, val objects: ObjectFactory) {
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. buildSrc/src/main/kotlin/Osgi.kt

    import org.gradle.api.Project
    import org.gradle.api.artifacts.VersionCatalogsExtension
    import org.gradle.api.plugins.ExtensionAware
    import org.gradle.api.tasks.SourceSetContainer
    import org.gradle.api.tasks.bundling.Jar
    import org.gradle.kotlin.dsl.dependencies
    import org.gradle.kotlin.dsl.findByType
    import org.gradle.kotlin.dsl.get
    import org.gradle.kotlin.dsl.getByName
    
    fun Project.applyOsgi(vararg bndProperties: String) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1/generated.proto

      // CSIStorageCapacity objects with capacity information, if set to true.
      //
      // The check can be enabled immediately when deploying a driver.
      // In that case, provisioning new volumes with late binding
      // will pause until the driver deployment has published
      // some suitable CSIStorageCapacity object.
      //
      // Alternatively, the driver can be deployed with the field
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/manually.md

    Just keep in mind that when you read "server" in general, it could refer to one of those two things.
    
    When referring to the remote machine, it's common to call it **server**, but also **machine**, **VM** (virtual machine), **node**. Those all refer to some type of remote machine, normally running Linux, where you run programs.
    
    ## Install the Server Program
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  7. docs/en/docs/benchmarks.md

    # Benchmarks
    
    Independent TechEmpower benchmarks show **FastAPI** applications running under Uvicorn as <a href="https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7" class="external-link" target="_blank">one of the fastest Python frameworks available</a>, only below Starlette and Uvicorn themselves (used internally by FastAPI).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  8. docs/tr/docs/tutorial/first_steps.md

    ```
    
    Bunu bir `main.py` dosyasına kopyalayın.
    
    Projeyi çalıştırın:
    
    <div class="termy">
    
    ```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]
    Plain Text
    - Registered: Sun Feb 04 07:19:10 GMT 2024
    - Last Modified: Tue Jan 10 12:38:01 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/first-steps.md

    ```
    
    Скопируйте в файл `main.py`.
    
    Запустите сервер в режиме реального времени:
    
    <div class="termy">
    
    ```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]
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/behind-a-proxy.md

    ### Providing the `root_path`
    
    To achieve this, you can use the command line option `--root-path` like:
    
    <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>
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.6K bytes
    - Viewed (2)
Back to top