Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for Implementation (0.18 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        /**
         * Configure a single client scoped listener that will receive all analytic events for this
         * client.
         *
         * @see EventListener for semantics and restrictions on listener implementations.
         */
        fun eventListener(eventListener: EventListener) =
          apply {
            this.eventListenerFactory = eventListener.asFactory()
          }
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def providerWithSideEffect = Providers.of(someValue()).withSideEffect(sideEffect)
            // `PropertyInternal` does not directly provide these setters,
            // but all user-facing interfaces and their implementations do.
            property."$setter"(providerWithSideEffect)
    
            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            property.calculateExecutionTimeValue()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  3. src/net/http/request.go

    var (
    	// ErrNotSupported indicates that a feature is not supported.
    	//
    	// It is returned by ResponseController methods to indicate that
    	// the handler does not support the method, and by the Push method
    	// of Pusher implementations to indicate that HTTP/2 Push support
    	// is not available.
    	ErrNotSupported = &ProtocolError{"feature not supported"}
    
    	// Deprecated: ErrUnexpectedTrailer is no longer returned by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		// Remove cached version info.
    		xremove(pathf("%s/VERSION.cache", goroot))
    
    		// Remove distribution packages.
    		xremoveall(pathf("%s/pkg/distpack", goroot))
    	}
    }
    
    /*
     * command implementations
     */
    
    // The env command prints the default environment.
    func cmdenv() {
    	path := flag.Bool("p", false, "emit updated PATH")
    	plan9 := flag.Bool("9", gohostos == "plan9", "emit plan 9 syntax")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    // frameworkImpl.
    type extensionPoint struct {
    	// the set of plugins to be configured at this extension point.
    	plugins *config.PluginSet
    	// a pointer to the slice storing plugins implementations that will run at this
    	// extension point.
    	slicePtr interface{}
    }
    
    func (f *frameworkImpl) getExtensionPoints(plugins *config.Plugins) []extensionPoint {
    	return []extensionPoint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    		close(reqInFlight) // cause the client to cancel its request
    
    		select {
    		case <-time.After(10 * time.Second):
    			// Note: this should only happen in broken implementations, and the
    			// closenotify case should be instantaneous.
    			t.Error("Handler never saw CloseNotify")
    			return
    		case <-w.(http.CloseNotifier).CloseNotify():
    		}
    
    		w.WriteHeader(http.StatusOK)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top