Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for accept4 (1.81 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          getResponse(
            Request.Builder()
              .url(server.url("/"))
              .header("Accept-Encoding", "custom")
              .build(),
          )
        assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE)).isEqualTo("ABCDE")
        val request = server.takeRequest()
        assertThat(request.headers["Accept-Encoding"]).isEqualTo("custom")
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // filter value from [i, o] -> [o, i]. This is because we assume `[i, o]`
    // format for `stablehlo.dot_general` (i.e. contracting dimension == 1)
    // whereas `tfl.fully_connected` accepts an OI format.
    TFL::QConstOp CreateTransposedTflConstOpForFilter(
        stablehlo::ConstantOp filter_constant_op, PatternRewriter& rewriter,
        bool is_per_channel) {
      const auto filter_values = filter_constant_op.getValue()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      /**
       * Represents an operation that accepts a {@link ValueAndCloser} for the last step in a {@link
       * ClosingFuture} pipeline.
       *
       * @param <V> the type of the final value of a successful pipeline
       * @see ClosingFuture#finishToValueAndCloser(ValueAndCloserConsumer, Executor)
       */
      public interface ValueAndCloserConsumer<V extends @Nullable Object> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       */
      @FunctionalInterface
      public interface ValueAndCloserConsumer<V extends @Nullable Object> {
    
        /** Accepts a {@link ValueAndCloser} for the last step in a {@link ClosingFuture} pipeline. */
        void accept(ValueAndCloser<V> valueAndCloser);
      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline by submitting a callable block to an executor.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    		{
    			name:     "accepted external to LB1",
    			sourceIP: testExternalClient,
    			destIP:   svcLBIP1,
    			destPort: svcPort,
    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    		{
    			name:     "accepted external to LB2",
    			sourceIP: testExternalClient,
    			destIP:   svcLBIP2,
    			destPort: svcPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public void forEach(BiConsumer<? super K, ? super V> action) {
          checkNotNull(action);
          // avoids allocation of entries
          backingSet().forEach(k -> action.accept(k, function.apply(k)));
        }
      }
    
      static <K extends @Nullable Object, V extends @Nullable Object>
          Iterator<Entry<K, V>> asMapEntryIterator(Set<K> set, final Function<? super K, V> function) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	assert.NoError(t, err)
    	defer ln.Close()
    	go func() {
    		// accept connections and just let them hang
    		for {
    			_, err := ln.Accept()
    			if err != nil {
    				t.Log(err)
    				return
    			}
    			t.Log("accepted connection")
    			atomic.AddInt64(&attempts, 1)
    		}
    	}()
    
    	config := &rest.Config{
    		Host:    "http://" + ln.Addr().String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/routing.go

    		templateVars: func(src echo.Callers, dests echo.Instances) map[string]any {
    			// Test all cipher suites, including a fake one. Envoy should accept all of the ones on the "valid" list,
    			// and control plane should filter our invalid one.
    
    			params := templateParams(protocol.HTTPS, src, dests, append(sets.SortedList(security.ValidCipherSuites), "fake"), ports.HTTP.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"ab":                                   "\U0001f18e",
    	"abacus":                               "\U0001f9ee",
    	"abc":                                  "\U0001f524",
    	"abcd":                                 "\U0001f521",
    	"accept":                               "\U0001f251",
    	"accordion":                            "\U0001fa97",
    	"adhesive_bandage":                     "\U0001fa79",
    	"adult":                                "\U0001f9d1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

            "type": "object"
          },
          "io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy": {
            "description": "ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
Back to top