Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 140 for Implementation (0.32 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. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	//   matches /foo/bar/baz, but does not match /foo/barbaz).
    	// * ImplementationSpecific: Interpretation of the Path matching is up to
    	//   the IngressClass. Implementations can treat this as a separate PathType
    	//   or treat it identically to Prefix or Exact path types.
    	// Implementations are required to support all path types.
    	// Defaults to ImplementationSpecific.
    	PathType *PathType `json:"pathType,omitempty" protobuf:"bytes,3,opt,name=pathType"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                            // Ignore a missing signature for SMB < 3.0, as
                            // - the specification does not clearly require that (it does for SMB3+)
                            // - there seem to be server implementations (known: EMC Isilon) that do not sign the final
                            // response
                            if ( negoResp.getSelectedDialect().atLeast(DialectVersion.SMB300) || response.isSigned() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/pod_workers.go

    // until it returns no error. Then the SyncTerminatedPod method is invoked until it exits without
    // error, and the pod is considered terminal. Implementations of this interface must be threadsafe
    // for simultaneous invocation of these methods for multiple pods.
    type podSyncer interface {
    	// SyncPod configures the pod and starts and restarts all containers. If it returns true, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    // Use an affinity graph to mark two values which should use the
    // same register. This affinity graph will be used to prefer certain
    // registers for allocation. This affinity helps eliminate moves that
    // are required for phi implementations and helps generate allocations
    // for 2-register architectures.
    
    // Note: regalloc generates a not-quite-SSA output. If we have:
    //
    //             b1: x = ... : AX
    //                 x2 = StoreReg x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top