Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 137 for shtml (0.04 sec)

  1. cmd/s3-zip-handlers.go

    		if getRequestAuthType(r) == authTypeAnonymous {
    			// As per "Permission" section in
    			// https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectGET.html
    			// If the object you request does not exist,
    			// the error Amazon S3 returns depends on
    			// whether you also have the s3:ListBucket
    			// permission.
    			// * If you have the s3:ListBucket permission
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. cmd/sts-handlers.go

    	}
    
    	policyBuf, err := json.Marshal(sessionPolicy)
    	if err != nil {
    		return err
    	}
    
    	// https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRoleWithWebIdentity.html
    	// https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html
    	// The plain text that you use for both inline and managed session
    	// policies shouldn't exceed maxSTSSessionPolicySize characters.
    	if len(policyBuf) > maxSTSSessionPolicySize {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

    /**
     * The bean containing the Mojo descriptor.<br>
     * For more information about the usage tag, have a look to:
     * <a href="https://maven.apache.org/developers/mojo-api-specification.html">
     * https://maven.apache.org/developers/mojo-api-specification.html</a>
     *
     * TODO is there a need for the delegation of MavenMojoDescriptor to this?
     * Why not just extend ComponentDescriptor here?
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1/types.go

    	Items []CertificateSigningRequest `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // KeyUsage specifies valid usage contexts for keys.
    // See:
    //
    //	https://tools.ietf.org/html/rfc5280#section-4.2.1.3
    //	https://tools.ietf.org/html/rfc5280#section-4.2.1.12
    //
    // +enum
    type KeyUsage string
    
    // Valid key usages
    const (
    	UsageSigning           KeyUsage = "signing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

                    "This is scheduled to be removed in Gradle 9.0. " +
                    "Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#directory_build_cache_retention_deprecated"
            )
        }
    
        @ToBeFixedForConfigurationCache(because = "Cache is cleaned twice on load after store")
        def "cleans up entries when #cleanupTrigger"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. cmd/update.go

    	return
    }
    
    const (
    	// Kubernetes deployment doc link.
    	kubernetesDeploymentDoc = "https://min.io/docs/minio/kubernetes/upstream/index.html#quickstart-for-kubernetes"
    
    	// Mesos deployment doc link.
    	mesosDeploymentDoc = "https://min.io/docs/minio/kubernetes/upstream/index.html#quickstart-for-kubernetes"
    )
    
    func getDownloadURL(releaseTag string) (downloadURL string) {
    	// Check if we are in DCOS environment, return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

        private
        var state: State = State.Idle { kind, problem ->
            State.Spooling(
                temporaryFileProvider.createTemporaryFile("configuration-cache-report", "html"),
                executorFactory.create("Configuration cache report writer", 1),
                CharBuf::class.java.classLoader,
                ::decorateProblem
            ).onDiagnostic(kind, problem)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

    public interface KaTypeInfoProviderMixIn : KaSessionMixIn {
        /**
         * Returns true if this type is denotable. A denotable type is a type that can be written in Kotlin by end users. See
         * https://kotlinlang.org/spec/type-system.html#type-kinds for more details.
         */
        public val KaType.isDenotable: Boolean
            get() = withValidityAssertion { analysisSession.typeInfoProvider.isDenotable(this) }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/settings.md

    ```Python hl_lines="3"
    import os
    
    name = os.getenv("MY_NAME", "World")
    print(f"Hello {name} from Python")
    ```
    
    !!! tip
        The second argument to <a href="https://docs.python.org/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> is the default value to return.
    
        If not provided, it's `None` by default, here we provide `"World"` as the default value to use.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/net/http/request_test.go

    	benchmarkReadRequest(b, `GET / HTTP/1.1
    Host: localhost:8080
    Connection: keep-alive
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top