Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,346 for supported (0.06 sec)

  1. buildscripts/checkdeps.sh

    		if ! check_minimum_version "${OSX_VERSION}" "${osx_host_version}"; then
    			echo "OSX version '${osx_host_version}' is not supported. Minimum supported version: ${OSX_VERSION}"
    			exit 1
    		fi
    		return
    		;;
    	*)
    		echo "OS '${KNAME}' is not supported. Supported OS: [Linux, FreeBSD, OpenBSD, NetBSD, Darwin, DragonFly]"
    		exit 1
    		;;
    	esac
    }
    
    assert_check_golang_env() {
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-06-13 05:08
    - 3.4K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/platform/Platform.kt

    /**
     * Access to platform-specific features.
     *
     * ### Session Tickets
     *
     * Supported on Android 2.3+.
     * Supported on JDK 8+ via Conscrypt.
     *
     * ### ALPN (Application Layer Protocol Negotiation)
     *
     * Supported on Android 5.0+.
     *
     * Supported on OpenJDK 8 via the JettyALPN-boot library or Conscrypt.
     *
     * Supported on OpenJDK 9+ via SSLParameters and SSLSocket features.
     *
     * ### Trust Manager Extraction
     *
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 8K bytes
    - Viewed (0)
  3. istioctl/pkg/install/k8sversion/version.go

    	UnSupportedK8SVersionLogMsg = "\nThe Kubernetes version %s is not supported by Istio %s. The minimum supported Kubernetes version is 1.%d.\n" +
    		"Proceeding with the installation, but you might experience problems. " +
    		"See https://istio.io/latest/docs/releases/supported-releases/ for a list of supported versions.\n"
    )
    
    // CheckKubernetesVersion checks if this Istio version is supported in the k8s version
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-03-03 22:35
    - 2.6K bytes
    - Viewed (0)
  4. docs/select/README.md

    - All [operators](https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-glacier-select-sql-reference-operators.html) are supported.
    - All aggregation, conditional, type-conversion and string functions are supported.
    - JSON path expressions such as `FROM S3Object[*].path` are not yet evaluated.
    - Large numbers (outside of the signed 64-bit range) are not yet supported.
    Registered: 2025-05-25 19:28
    - Last Modified: 2022-09-29 04:28
    - 6.5K bytes
    - Viewed (0)
  5. docs/minio-limits.md

    ## List of Amazon S3 API's not supported on MinIO
    
    We found the following APIs to be redundant or less useful outside of AWS S3. If you have a different view on any of the APIs we missed, please consider opening a [GitHub issue](https://github.com/minio/minio/issues) with relevant details on why MinIO must implement them.
    
    ### List of Amazon S3 Bucket API's not supported on MinIO
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-01-18 07:03
    - 5.9K bytes
    - Viewed (0)
  6. tests/error_translator_test.go

    	if err != nil {
    		t.Fatalf("failed to connect database, got error %v", err)
    	}
    
    	dialectors := map[string]bool{"sqlite": true, "postgres": true, "mysql": true, "sqlserver": true}
    	if supported, found := dialectors[db.Dialector.Name()]; !(found && supported) {
    		return
    	}
    
    	DB.Migrator().DropTable(&City{})
    
    	if err = db.AutoMigrate(&City{}); err != nil {
    		t.Fatalf("failed to migrate cities table, got error: %v", err)
    	}
    
    Registered: 2025-05-25 09:35
    - Last Modified: 2023-07-12 13:21
    - 3.1K bytes
    - Viewed (0)
  7. internal/bucket/versioning/versioning.go

    // for multifactor and status of versioning.
    type State string
    
    // Various supported states
    const (
    	Enabled State = "Enabled"
    	// Disabled  State = "Disabled" only used by MFA Delete not supported yet.
    	Suspended State = "Suspended"
    )
    
    var (
    	errExcludedPrefixNotSupported = Errorf("excluded prefixes extension supported only when versioning is enabled")
    	errTooManyExcludedPrefixes    = Errorf("too many excluded prefixes")
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-24 23:05
    - 4.6K bytes
    - Viewed (0)
  8. internal/crypto/error.go

    var (
    	// ErrInvalidEncryptionMethod indicates that the specified SSE encryption method
    	// is not supported.
    	ErrInvalidEncryptionMethod = Errorf("The encryption method is not supported")
    
    	// ErrInvalidCustomerAlgorithm indicates that the specified SSE-C algorithm
    	// is not supported.
    	ErrInvalidCustomerAlgorithm = Errorf("The SSE-C algorithm is not supported")
    
    	// ErrMissingCustomerKey indicates that the HTTP headers contains no SSE-C client key.
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-03-28 17:44
    - 4.4K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "meshConfig.defaultConfig.tracing.stackdriver.debug" "Istio supported tracers"
        "meshConfig.defaultConfig.tracing.stackdriver.maxNumberOfAttributes" "Istio supported tracers"
        "meshConfig.defaultConfig.tracing.stackdriver.maxNumberOfAnnotations" "Istio supported tracers"
        "meshConfig.defaultConfig.tracing.stackdriver.maxNumberOfMessageEvents" "Istio supported tracers"
    }}
    {{- range $dep, $replace := $failDeps }}
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-08-01 19:10
    - 4.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Charsets.java

       */
      @Deprecated @J2ktIncompatible @GwtIncompatible // Charset not supported by GWT
      public static final Charset UTF_16BE = StandardCharsets.UTF_16BE;
    
      /**
       * UTF-16LE: sixteen-bit UCS Transformation Format, little-endian byte order.
       *
       * @deprecated Use {@link StandardCharsets#UTF_16LE} instead.
       */
      @Deprecated @J2ktIncompatible @GwtIncompatible // Charset not supported by GWT
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 3K bytes
    - Viewed (0)
Back to top