Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for METHOD (0.21 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. src/fmt/fmt_test.go

    	{"%s", PanicS{io.ErrUnexpectedEOF}, "%!s(PANIC=String method: unexpected EOF)"},
    	{"%s", PanicS{3}, "%!s(PANIC=String method: 3)"},
    	// GoString
    	{"%#v", (*PanicGo)(nil), "<nil>"}, // nil pointer special case
    	{"%#v", PanicGo{io.ErrUnexpectedEOF}, "%!v(PANIC=GoString method: unexpected EOF)"},
    	{"%#v", PanicGo{3}, "%!v(PANIC=GoString method: 3)"},
    	// Issue 18282. catchPanic should not clear fmtFlags permanently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - a `writeObject` method combined with a `readObject` method to control exactly which information to store;
    - a `writeObject` method with no corresponding `readObject`; `writeObject` must eventually call `ObjectOutputStream.defaultWriteObject`;
    - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call `ObjectInputStream.defaultReadObject`;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    // IsInterfaceMethod reports whether (field) m is
    // an interface method. Such methods have the
    // special receiver type types.FakeRecvType().
    func IsInterfaceMethod(f *Type) bool {
    	return f.Recv().Type == FakeRecvType()
    }
    
    // IsMethodApplicable reports whether method m can be called on a
    // value of type t. This is necessary because we compute a single
    // method set for both T and *T, but some *T methods are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			routes = append(routes, route)
    		case "CONNECT":
    			for _, method := range connecter.ConnectMethods() {
    				connectProducedObject := storageMeta.ProducesObject(method)
    				if connectProducedObject == nil {
    					connectProducedObject = "string"
    				}
    				doc := "connect " + method + " requests to " + kind
    				if isSubresource {
    					doc = "connect " + method + " requests to " + subresource + " of " + kind
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. 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)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

          }
    
        /**
         * Sets the socket factory used to create connections. OkHttp only uses the parameterless
         * [SocketFactory.createSocket] method to create unconnected sockets. Overriding this method,
         * e. g., allows the socket to be bound to a specific local address.
         *
         * If unset, the [system-wide default][SocketFactory.getDefault] socket factory will be used.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. 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)
  10. 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: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top