Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 597 for supportsL7 (0.2 sec)

  1. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        gRPC call. For a pre-existing snapshot, this field will be filled
                        with the "creation_time" value returned from the CSI "ListSnapshots"
                        gRPC call if the driver supports it. If not specified, it indicates
                        the creation time is unknown. The format of this field is a Unix
                        nanoseconds time encoded as an int64. On Unix, the command `date
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter.go

    	if err != nil {
    		return errors.New(log("mounter.SetupAt failed to get CSI persistent source: %v", err))
    	}
    
    	// Check CSIDriver.Spec.Mode to ensure that the CSI driver
    	// supports the current volumeLifecycleMode.
    	if err := c.supportsVolumeLifecycleMode(); err != nil {
    		return volumetypes.NewTransientOperationFailure(log("mounter.SetupAt failed to check volume lifecycle mode: %s", err))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/collect/RangeSet.java

       *
       * <p>The returned view supports the {@link #add} operation if this {@code RangeSet} supports
       * {@link #remove}, and vice versa.
       */
      RangeSet<C> complement();
    
      /**
       * Returns a view of the intersection of this {@code RangeSet} with the specified range.
       *
       * <p>The returned view supports all optional operations supported by this {@code RangeSet}, with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    Dependency version alignment allows different modules belonging to the same logical group (a _platform_) to have identical versions in a dependency graph.
    
    == Handling inconsistent module versions
    
    Gradle supports aligning versions of modules which belong to the same "platform".
    It is often preferable, for example, that the API and implementation modules of a component are using the same version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. docs/security/README.md

    # MinIO Security Overview [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    ## Server-Side Encryption
    
    MinIO supports two different types of server-side encryption ([SSE](#sse)):
    
    - **SSE-C**: The MinIO server en/decrypts an object with a secret key provided by the S3 client as part of the HTTP request headers. Therefore, [SSE-C](#ssec) requires TLS/HTTPS.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/RangeSet.java

       *
       * <p>The returned view supports the {@link #add} operation if this {@code RangeSet} supports
       * {@link #remove}, and vice versa.
       */
      RangeSet<C> complement();
    
      /**
       * Returns a view of the intersection of this {@code RangeSet} with the specified range.
       *
       * <p>The returned view supports all optional operations supported by this {@code RangeSet}, with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

            outputContains "FINISH [Test method unknownError(SomeTest)] [unknownError] [AppException]\n"
        }
    
        @Issue("GRADLE-1532")
        def "supports thread pool size"() {
            given:
            file('src/test/java/SomeTest.java') << '''
                import org.testng.Assert;
                import org.testng.annotations.Test;
    
                public class SomeTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    //
    // E.g., you can provide one or more additional handlers for something like shutting down go routines gracefully.
    //
    // TODO(pohly): logcheck:context // HandleCrashWithContext should be used instead of HandleCrash in code which supports contextual logging.
    func HandleCrash(additionalHandlers ...func(interface{})) {
    	if r := recover(); r != nil {
    		additionalHandlersWithContext := make([]func(context.Context, interface{}), len(additionalHandlers))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. cmd/endpoint-ellipses.go

    	"github.com/cespare/xxhash/v2"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/pkg/v3/ellipses"
    	"github.com/minio/pkg/v3/env"
    )
    
    // This file implements and supports ellipses pattern for
    // `minio server` command line arguments.
    
    // Endpoint set represents parsed ellipses values, also provides
    // methods to get the sets of endpoints.
    type endpointSet struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

        // Uniform Quantized type for the rhs.
        int64_t rhs_quantized_dimension = op.getRhsQuantizationAxis();
        // Currently for dot, PTQ supports per-tensor quantization.
        if (rhs_quantized_dimension != -1) {
          return rewriter.notifyMatchFailure(
              op, "Legalization supports only rhs_quantization_axis -1.");
        }
        auto rhs_type = GetUniformQuantizedType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top