Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for Implementation (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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