Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 371 for Automatic (0.16 sec)

  1. pkg/kube/inject/testdata/inject/deploymentconfig-multi.yaml

                  ports:
                    - name: http
                      containerPort: 80
          triggers:
            - type: "ConfigChange"
            - type: "ImageChange"
              imageChangeParams:
                automatic: true
                containerNames:
                  - "helloworld"
                from:
                  kind: "ImageStreamTag"
                  name: "hello-go-gke:1.0"
          strategy:
            type: "Rolling"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. okhttp-coroutines/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("org.jetbrains.dokka")
      id("com.vanniktech.maven.publish.base")
      id("binary-compatibility-validator")
    }
    
    project.applyOsgi(
      "Export-Package: okhttp3.coroutines",
      "Automatic-Module-Name: okhttp3.coroutines",
      "Bundle-SymbolicName: com.squareup.okhttp3.coroutines"
    )
    
    dependencies {
      api(projects.okhttp)
      implementation(libs.kotlinx.coroutines.core)
      api(libs.squareup.okio)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 936 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/README.md

        new op is presented as a single node in the graph, thus optimization passes
        and kernels can easily be specialized to this op for better performance.
    *   *Automatic shape/type inference support*: No shape functions are required
        for the new op;
    *   *Automatic gradient support (WIP)*: The user doesn't need to author gradient
        a function of the op for training.
    
    ### Use Cases
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image01.png">
    
    !!! check
        Again, just with that same Python type declaration, **FastAPI** gives you automatic, interactive documentation (integrating Swagger UI).
    
        Notice that the path parameter is declared to be an integer.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/graal/OkHttpFeature.kt

    package okhttp3.internal.graal
    
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    import org.graalvm.nativeimage.hosted.Feature
    import org.graalvm.nativeimage.hosted.RuntimeResourceAccess
    
    /**
     * Automatic configuration of OkHttp for native images.
     *
     * Currently, includes all necessary resources.
     */
    class OkHttpFeature : Feature {
      @IgnoreJRERequirement
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pkg/controller/bootstrap/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package bootstrap provides automatic processes necessary for bootstraping.
    // This includes managing and expiring tokens along with signing well known
    // configmaps with those tokens.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 20:47:25 UTC 2017
    - 831 bytes
    - Viewed (0)
  7. samples/helloworld/README.md

    See [Canary deployments using Istio](https://istio.io/blog/2017/0.1-canary).
    
    ## Start the helloworld service
    
    The following commands assume you have
    [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection)
    enabled in your cluster.
    If not, you'll need to modify them to include
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. docs/en/docs/reference/security/index.md

    There are multiple tools that you can use to create those dependables, and they get integrated into OpenAPI so they are shown in the automatic docs UI, they can be used by automatically generated clients and SDKs, etc.
    
    You can import them from `fastapi.security`:
    
    ```python
    from fastapi.security import (
        APIKeyCookie,
        APIKeyHeader,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. samples/security/spire/README.md

      If you have [automatic sidecar injection](https://istio.io/docs/setup/additional-setup/sidecar-injection/#automatic-sidecar-injection) enabled:
    
      ```bash
      $ kubectl apply -f sleep-spire.yaml
      ```
    
      Otherwise, manually inject the sidecar before applying:
    
      ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version.go

    	}
    	if len(gr.Group) == 0 {
    		return gr.Resource
    	}
    	return gr.Resource + "." + gr.Group
    }
    
    // GroupVersionResource unambiguously identifies a resource.  It doesn't anonymously include GroupVersion
    // to avoid automatic coercion.  It doesn't use a GroupVersion to avoid custom marshalling
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type GroupVersionResource struct {
    	Group    string `json:"group" protobuf:"bytes,1,opt,name=group"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 04 09:55:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
Back to top