Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for METHOD (0.15 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    			name:         "contains newline",
    			formatString: "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)% \n",
    			expected:     "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)% \n",
    		},
    		{
    			name:         "miss newline",
    			formatString: "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)%",
    			expected:     "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)%\n",
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    							method: "GET",
    							allow:  true,
    						},
    						{
    							ports:  []echo.Port{ports.HTTP, ports.HTTP2},
    							method: "PUT",
    							allow:  false,
    						},
    					}
    
    					for _, c := range cases {
    						newAuthzTest().
    							From(from).
    							To(to).
    							Allow(c.allow).
    							Method(c.method).
    							BuildAndRunForPorts(t, c.ports...)
    					}
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// Any top-level qualifiers belong to the function type.
    	if mwq != nil {
    		a = mwq.Method
    		mwq.Method = ft
    		ft = mwq
    	}
    	if q, ok := a.(*Qualified); ok && q.LocalName {
    		p := &q.Name
    		if da, ok := (*p).(*DefaultArg); ok {
    			p = &da.Arg
    		}
    		if mwq, ok := (*p).(*MethodWithQualifiers); ok {
    			*p = mwq.Method
    			mwq.Method = ft
    			ft = mwq
    		}
    	}
    
    	r := AST(&Typed{Name: a, Type: ft})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

       * generated by {@code factory}.
       *
       * <p><b>Warning: do not use</b> this method when the collections returned by {@code factory}
       * implement either {@link List} or {@code Set}! Use the more specific method {@link
       * #newListMultimap}, {@link #newSetMultimap} or {@link #newSortedSetMultimap} instead, to avoid
       * very surprising behavior from {@link Multimap#equals}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Starting in Gradle 9.0, using a configuration inconsistently with its intended usage will be prohibited.
    
    Also note that although it is not currently restricted, the `getDependencies()` method is really only intended for use with DECLARABLE configurations.
    The `getAllDependencies()` method, which retrieves all declared dependencies on a configuration and any superconfigurations, will not be restricted to any particular usage.
    
    [[deprecated_access_to_conventions]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                      if (!method.getDeclaringClass().equals(type)) {
                        return method.invoke(delegate, args);
                      }
                      checkState(started.getCount() == 1);
                      started.countDown();
                      try {
                        return method.invoke(delegate, args);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    			return nil, err
    		}
    	}
    	if !isHTTP {
    		req.closeBody()
    		return nil, badStringError("unsupported protocol scheme", scheme)
    	}
    	if req.Method != "" && !validMethod(req.Method) {
    		req.closeBody()
    		return nil, fmt.Errorf("net/http: invalid method %q", req.Method)
    	}
    	if req.URL.Host == "" {
    		req.closeBody()
    		return nil, errors.New("http: no Host in request URL")
    	}
    
    	// Transport request context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    	f := new(FuncDecl)
    	f.pos = p.pos()
    	f.Pragma = p.takePragma()
    
    	var context string
    	if p.got(_Lparen) {
    		context = "method"
    		rcvr := p.paramList(nil, nil, _Rparen, false)
    		switch len(rcvr) {
    		case 0:
    			p.error("method has no receiver")
    		default:
    			p.error("method has multiple receivers")
    			fallthrough
    		case 1:
    			f.Recv = rcvr[0]
    		}
    	}
    
    	if p.tok == _Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top