Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for deflate (0.18 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    "This behavior has been deprecated. " +
                    "This will fail with an error in Gradle 9.0. " +
                    "Declare the association between the task and the build service using 'Task#usesService'. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    We believe this situation is very unlikely to occur in real projects, as IDE integration and test execution would not work correctly.
    If you need to use the Gradle API, declare a `gradleApi` dependency or use the `java-gradle-plugin` plugin.
    
    ==== Configuration cache implementation packages now under `org.gradle.internal`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                // because it still creates an inner class for an iterator, which delegates to an Array iterator, which does... nothing.
                // so just adding this check has a significant impact because most components do not declare any capability
                if (!capabilities.isEmpty()) {
                    for (Capability capability : capabilities) {
                        action.execute(capability);
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. .bazelrc

    # END TF CACHE HELPER OPTIONS
    # BEGIN TF TEST SUITE OPTIONS
    # These are convenience config options that effectively declare TF's CI test suites. Look
    # at the scripts of ci/official/ to see how TF's CI uses them.
    
    # LIBTENSORFLOW TESTS are for building Libtensorflow archives. These are CUDA/CPU-agnostic.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
      }
    
      /** Unblocks all threads and runs all listeners. */
      private static void complete(AbstractFuture<?> param, boolean callInterruptTask) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
        AbstractFuture<?> future = param;
    
        Listener next = null;
        outer:
        while (true) {
          future.releaseWaiters();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
      }
    
      /** Unblocks all threads and runs all listeners. */
      private static void complete(AbstractFuture<?> param, boolean callInterruptTask) {
        // Declare a "true" local variable so that the Checker Framework will infer nullness.
        AbstractFuture<?> future = param;
    
        Listener next = null;
        outer:
        while (true) {
          future.releaseWaiters();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	// Remove active pods if Job failed.
    	if jobCtx.finishedCondition != nil {
    		deleted, err := jm.deleteActivePods(ctx, &job, jobCtx.activePods)
    		if deleted != active || !satisfiedExpectations {
    			// Can't declare the Job as finished yet, as there might be remaining
    			// pod finalizers or pods that are not in the informer's cache yet.
    			jobCtx.finishedCondition = nil
    		}
    		active -= deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top