Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,071 for ACCEPT (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/helpers_test.go

    }
    
    func TestLazyAccept(t *testing.T) {
    	req := &http.Request{}
    	req.Header = http.Header{}
    
    	accept := "application/json"
    	req.Header.Set("Accept", accept)
    
    	acceptWithReq := &lazyAccept{req}
    	assert.Equal(t, accept, fmt.Sprintf("%v", acceptWithReq))
    
    	acceptWithoutReq := &lazyAccept{}
    	assert.Equal(t, "unknown", fmt.Sprintf("%v", acceptWithoutReq))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/FakeTicker.java

      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      @CanIgnoreReturnValue
      public FakeTicker advance(long time, TimeUnit timeUnit) {
        return advance(timeUnit.toNanos(time));
      }
    
      /** Advances the ticker value by {@code nanoseconds}. */
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      @CanIgnoreReturnValue
      public FakeTicker advance(long nanoseconds) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/testFixtures/groovy/org/gradle/internal/snapshot/SnapshotVisitorUtil.groovy

    class SnapshotVisitorUtil {
        static List<String> getAbsolutePaths(FileSystemSnapshot snapshot, boolean includeRoots = false) {
            def absolutePaths = []
            snapshot.accept(new RootTrackingFileSystemSnapshotHierarchyVisitor() {
                @Override
                SnapshotVisitResult visitEntry(FileSystemLocationSnapshot entrySnapshot, boolean isRoot) {
                    if (includeRoots || !isRoot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSources.kt

      @JvmStatic
      fun createFactory(callFactory: Call.Factory): EventSource.Factory {
        return EventSource.Factory { request, listener ->
          val actualRequest =
            if (request.header("Accept") == null) {
              request.newBuilder().addHeader("Accept", "text/event-stream").build()
            } else {
              request
            }
    
          RealEventSource(actualRequest, listener).apply {
            connect(callFactory)
          }
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:18:15 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/TreeTraverser.java

          public void forEach(Consumer<? super T> action) {
            checkNotNull(action);
            new Consumer<T>() {
              @Override
              public void accept(T t) {
                action.accept(t);
                children(t).forEach(this);
              }
            }.accept(root);
          }
        };
      }
    
      UnmodifiableIterator<T> preOrderIterator(T root) {
        return new PreOrderIterator(root);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. pkg/kubelet/lifecycle/handlers_test.go

    			},
    			Expected: expected{
    				OldURL:    "http://example.test:42/foo",
    				OldHeader: http.Header{},
    				NewURL:    "http://example.test:42/foo",
    				NewHeader: http.Header{
    					"Accept":     {"*/*"},
    					"User-Agent": {"kube-lifecycle/."},
    				},
    			},
    		}, {
    			Name:  "missing host",
    			PodIP: "233.252.0.1",
    			HTTPGet: &v1.HTTPGetAction{
    				Path:        "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategyTest.groovy

            Strings.isNullOrEmpty(result.reason)
        }
    
        def "strategy does not accept negative threshold"() {
            when:
            new LowMemoryDaemonExpirationStrategy(-1)
    
            then:
            thrown IllegalArgumentException
        }
    
        def "strategy does not accept percentage greater than 1"() {
            when:
            new LowMemoryDaemonExpirationStrategy(1.1)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. pkg/util/iptables/save_restore_test.go

    	}
    }
    
    func TestGetChainsFromTable(t *testing.T) {
    	iptablesSave := dedent.Dedent(`
    		# Generated by iptables-save v1.4.21 on Fri Aug  7 14:47:37 2015
    		*nat
    		:PREROUTING ACCEPT [2:138]
    		:INPUT ACCEPT [0:0]
    		:OUTPUT ACCEPT [0:0]
    		:POSTROUTING ACCEPT [0:0]
    		:DOCKER - [0:0]
    		:KUBE-NODEPORT-CONTAINER - [0:0]
    		:KUBE-NODEPORT-HOST - [0:0]
    		:KUBE-PORTALS-CONTAINER - [0:0]
    		:KUBE-PORTALS-HOST - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/BridgeInterceptor.kt

        }
    
        // If we add an "Accept-Encoding: gzip" header field we're responsible for also decompressing
        // the transfer stream.
        var transparentGzip = false
        if (userRequest.header("Accept-Encoding") == null && userRequest.header("Range") == null) {
          transparentGzip = true
          requestBuilder.header("Accept-Encoding", "gzip")
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/AbstractVersionSelector.java

            this.selector = selector;
        }
    
        @Override
        public String getSelector() {
            return selector;
        }
    
        @Override
        public boolean accept(ComponentMetadata candidate) {
            return accept(candidate.getId().getVersion());
        }
    
        @Override
        public boolean canShortCircuitWhenVersionAlreadyPreselected() {
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top