Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 453 for define (0.19 sec)

  1. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // acceptedTypes describes the kinds that this endpoint accepts.
      // Subresources may accept the standard content types or define
      // custom negotiation schemes. The list may not be exhaustive for
      // all operations.
      // +listType=map
      // +listMapKey=group
      // +listMapKey=version
      // +listMapKey=kind
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

      @ValueSource(booleans = [false, true])
      fun proxyMoveTest(cleanShutdown: Boolean) {
        // Define a single Proxy at myproxy:8008 that will artificially move during the test
        val proxySelector = RecordingProxySelector()
        proxySelector.proxies.add(Proxy(Proxy.Type.HTTP, InetSocketAddress("myproxy", 8008)))
    
        // Define two host names for the DNS routing of fake proxy servers
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    {{- /* Core defines the common configuration used by all webhook segments */}}
    {{/* Copy just what we need to avoid expensive deepCopy */}}
    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 06:39:27 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

    {{- /* Core defines the common configuration used by all webhook segments */}}
    {{/* Copy just what we need to avoid expensive deepCopy */}}
    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "caBundle" .Values.istiodRemote.injectionCABundle
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 06:39:27 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. docs/en/docs/features.md

        * Because pydantic data structures are just instances of classes you define; auto-completion, linting, mypy and your intuition should all work properly with your validated data.
    * Validate **complex structures**:
        * Use of hierarchical Pydantic models, Python `typing`’s `List` and `Dict`, etc.
        * And validators allow complex data schemas to be clearly and easily defined, checked and documented as JSON Schema.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  6. maven-core/src/main/mdo/extension.mdo

                Other values define only the prefix of classes/resources being exposed. Their binary name must be equal to the prefix or starting with the prefix (followed by "." or "$").
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  7. manifests/charts/gateway/values.yaml

      podAnnotations:
        prometheus.io/port: "15020"
        prometheus.io/scrape: "true"
        prometheus.io/path: "/stats/prometheus"
        inject.istio.io/templates: "gateway"
        sidecar.istio.io/inject: "true"
    
      # Define the security context for the pod.
      # If unset, this will be automatically set to the minimum privileges required to bind to port 80 and 443.
      # On Kubernetes 1.22+, this only requires the `net.ipv4.ip_unprivileged_port_start` sysctl.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 11 16:55:28 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/MediaType.kt

        } catch (_: IllegalArgumentException) {
          defaultValue // This charset is invalid or unsupported. Give up.
        }
      }
    
      /**
       * Returns the parameter [name] of this media type, or null if this media type does not define
       * such a parameter.
       */
      fun parameter(name: String): String? = commonParameter(name)
    
      @JvmName("-deprecated_type")
      @Deprecated(
        message = "moved to val",
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/request-files.md

    # Request Files
    
    You can define files to be uploaded by the client using `File`.
    
    !!! info
        To receive uploaded files, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        E.g. `pip install python-multipart`.
    
        This is because uploaded files are sent as "form data".
    
    ## Import `File`
    
    Import `File` and `UploadFile` from `fastapi`:
    
    === "Python 3.9+"
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/dependencies/index.md

    * API usage monitoring systems
    * response data injection systems
    * etc.
    
    ## Simple and Powerful
    
    Although the hierarchical dependency injection system is very simple to define and use, it's still very powerful.
    
    You can define dependencies that in turn can define dependencies themselves.
    
    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 (0)
Back to top