Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for deflate (0.42 sec)

  1. src/net/http/request.go

    	//
    	// If a server received a request with header lines,
    	//
    	//	Host: example.com
    	//	accept-encoding: gzip, deflate
    	//	Accept-Language: en-us
    	//	fOO: Bar
    	//	foo: two
    	//
    	// then
    	//
    	//	Header = map[string][]string{
    	//		"Accept-Encoding": {"gzip, deflate"},
    	//		"Accept-Language": {"en-us"},
    	//		"Foo": {"Bar", "two"},
    	//	}
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	requestedGzip := false
    	if !pc.t.DisableCompression &&
    		req.Header.Get("Accept-Encoding") == "" &&
    		req.Header.Get("Range") == "" &&
    		req.Method != "HEAD" {
    		// Request gzip only, not deflate. Deflate is ambiguous and
    		// not as universally supported anyway.
    		// See: https://zlib.net/zlib_faq.html#faq39
    		//
    		// Note that we don't request this for HEAD requests,
    		// due to a bug in nginx:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	writeSuccessResponseJSON(w, encryptedData)
    }
    
    // DeleteServiceAccount - DELETE /minio/admin/v3/delete-service-account
    func (a adminAPIHandlers) DeleteServiceAccount(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Get current object layer instance.
    	objectAPI := newObjectLayerFn()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    	if err = minioClient.RemoveObjectTagging(ctx, bucket, object, minio.RemoveObjectTaggingOptions{}); err != nil {
    		c.Fatalf("user is unable to delete the object tags: %v", err)
    	}
    
    	if err = minioClient.RemoveObject(ctx, bucket, object, minio.RemoveObjectOptions{}); err != nil {
    		c.Fatalf("user is unable to delete the object: %v", err)
    	}
    }
    
    func (s *TestSuiteIAM) TestSTS(c *check) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. fastapi/param_functions.py

                dependency is called again (if declared more than once) in the same request.
                """
            ),
        ] = True,
    ) -> Any:
        """
        Declare a FastAPI Security dependency.
    
        The only difference with a regular dependency is that it can declare OAuth2
        scopes that will be integrated with OpenAPI and the automatic UI docs (by default
        at `/docs`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                solutions == [
                    'Call `.version()` to give the alias a version',
                    'Call `.withoutVersion()` to explicitly declare that the alias should not have a version',
                ]
            }
        }
    
        def "logs contain a message indicating if an unfinished builder is overwritten with one that finishes"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    			p.error(ident.Pos(), fmt.Sprintf("label %s undefined", ident.Name))
    		}
    	}
    	// pop label scope
    	p.targetStack = p.targetStack[0:n]
    	p.labelScope = p.labelScope.Outer
    }
    
    func (p *parser) declare(decl any, scope *ast.Scope, kind ast.ObjKind, idents ...*ast.Ident) {
    	for _, ident := range idents {
    		assert(ident.Obj == nil, "identifier already declared or resolved")
    		if ident.Name != "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:multi_project_builds_applying_plugins]]
    === Applying plugins
    
    You can declare your plugins within the subprojects to which they apply, but we recommend that you also declare them within the root project build script. This makes it easier to keep plugin versions consistent across projects within a build. The approach also improves the performance of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    === Adding the checksum for an artifact
    
    External components are identified by GAV coordinates, then each of the artifacts by their file names.
    To declare the checksums of an artifact, you need to add the corresponding section in the verification metadata file.
    For example, to declare the checksum for https://pdfbox.apache.org[Apache PDFBox].
    The GAV coordinates are:
    
    - group `org.apache.pdfbox`
    - name `pdfbox`
    - version `2.0.17`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | `project.sync {}`
    | link:{javadocPath}/org/gradle/api/file/FileSystemOperations.html#sync-org.gradle.api.Action-[FileSystemOperations.sync {}]
    
    | `project.delete {}`
    | link:{javadocPath}/org/gradle/api/file/FileSystemOperations.html#delete-org.gradle.api.Action-[FileSystemOperations.delete {}]
    
    | `project.mkdir(path)`
    | The Kotlin, Groovy or Java API available to your build logic.
    
    | `project.exec {}`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top