Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,092 for Compatible (0.15 sec)

  1. pkg/test/framework/label/labels.go

    	// CustomSetup indicates that the test requires a custom Istio installation.
    	CustomSetup Instance = "customsetup"
    
    	// IPv4 indicates a test is only compatible with IPv4 clusters.
    	// Any usage of this should have an associated GitHub issue to make it compatible with IPv6
    	IPv4 Instance = "ipv4"
    )
    
    var all = NewSet(
    	Postsubmit,
    	CustomSetup,
    	IPv4)
    
    // Find the label with the given name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 18 17:08:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. fastapi/datastructures.py

            Any next read or write will be done from that position.
    
            To be awaitable, compatible with async, this is run in threadpool.
            """
            return await super().seek(offset)
    
        async def close(self) -> None:
            """
            Close the file.
    
            To be awaitable, compatible with async, this is run in threadpool.
            """
            return await super().close()
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 5.6K bytes
    - Viewed (1)
  3. staging/src/k8s.io/cli-runtime/README.md

    to maintain kubectl compatible behavior.  Its first consumer is `k8s.io/kubectl`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository.  It is in direct support of Kubernetes, so branches
    will track Kubernetes and be compatible with that repo.  As we more cleanly separate the layers, we will review the
    compatibility guarantee.
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/README.md

    Generic library for building a Kubernetes aggregated API server.
    
    
    ## Purpose
    
    This library contains code to create Kubernetes aggregation server complete with delegated authentication and authorization,
    `kubectl` compatible discovery information, optional admission chain, and versioned types.  It's first consumers are
    `k8s.io/kubernetes`, `k8s.io/kube-aggregator`, and `github.com/kubernetes-incubator/service-catalog`.
    
    
    ## Compatibility
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeCompatibilityRule.java

    import org.gradle.api.Action;
    
    /**
     * A rule that determines whether a given attribute value is compatible some provided attribute value.
     * <p>
     * The provided {@link CompatibilityCheckDetails} will give access to consumer and producer values and allow implementation
     * mark the producer value as compatible or not.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaModuleInternal.java

         * the convention computation that is not compatible with Isolated Projects.
         */
        public @Nullable IdeaLanguageLevel getRawLanguageLevel() {
            return languageLevel;
        }
    
        /**
         * Returns the user-defined value for the {@link #getTargetBytecodeVersion()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:33:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

    /**
     * A {@link ArtifactVariantSelector} that uses attribute matching to select a matching set of artifacts.
     *
     * If no producer variant is compatible with the requested attributes, this selector will attempt to construct a chain of artifact
     * transforms that can produce a variant compatible with the requested attributes.
     *
     * An instance of {@link ResolutionFailureHandler} is injected in the constructor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/response-directly.md

    By default, **FastAPI** would automatically convert that return value to JSON using the `jsonable_encoder` explained in [JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank}.
    
    Then, behind the scenes, it would put that JSON-compatible data (e.g. a `dict`) inside of a `JSONResponse` that would be used to send the response to the client.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaProjectInternal.java

         * the convention computation that is not compatible with Isolated Projects.
         */
        @Nullable
        public IdeaLanguageLevel getRawLanguageLevel() {
            return languageLevel;
        }
    
        /**
         * Returns the user-defined value for the {@link #getTargetBytecodeVersion()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 13:32:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. samples/bookinfo/src/details/details.rb

          'x-datadog-sampling-priority',
    
          # W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
          # configurations.
          'traceparent',
          'tracestate',
    
          # Cloud trace context. Compatible with OpenCensusAgent and Stackdriver Istio
          # configurations.
          'x-cloud-trace-context',
    
          # Grpc binary trace context. Compatible with OpenCensusAgent nad
          # Stackdriver Istio configurations.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top