Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Implementation (0.17 sec)

  1. src/internal/trace/traceviewer/static/webcomponents.min.js

    ype,d),S(t.prototype,f),S(t.prototype,p),S(t.prototype,{get implementation(){var e=H.get(this);return e?e:(e=new a(C(this).implementation),H.set(this,e),e)},get defaultView(){return j(C(this).defaultView)}}),T(window.Document,t,document.implementation.createHTMLDocument("")),window.HTMLDocument&&T(window.HTMLDocument,t),D([window.HTMLBodyElement,window.HTMLDocument||window.Document,window.HTMLHeadElement]);var A=document.implementation.createDocument;a.prototype.createDocument=function(){return ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    in the source text.
    </p>
    <p>
    Each code point is distinct; for instance, upper and lower case letters
    are different characters.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may disallow the NUL character (U+0000) in the source text.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may ignore a UTF-8-encoded byte order mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/reflect/value.go

    				default:
    					panic("unknown ABI part kind")
    				}
    			}
    			ret[i] = Value{tv, s, flagIndir | flag(tv.Kind())}
    		}
    	}
    
    	return ret
    }
    
    // callReflect is the call implementation used by a function
    // returned by MakeFunc. In many ways it is the opposite of the
    // method Value.call above. The method above converts a call using Values
    // into a call of a function with a concrete argument frame, while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		ready(gp, traceskip, true)
    	})
    }
    
    //go:nosplit
    func acquireSudog() *sudog {
    	// Delicate dance: the semaphore implementation calls
    	// acquireSudog, acquireSudog calls new(sudog),
    	// new calls malloc, malloc can call the garbage collector,
    	// and the garbage collector calls the semaphore implementation
    	// in stopTheWorld.
    	// Break the cycle by doing acquirem/releasem around new(sudog).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    }
    
    // PackagesAndErrorsOutsideModule is like PackagesAndErrors but runs in
    // module-aware mode and ignores the go.mod file in the current directory or any
    // parent directory, if there is one. This is used in the implementation of 'go
    // install pkg@version' and other commands that support similar forms.
    //
    // modload.ForceUseModules must be true, and modload.RootMode must be NoRoot
    // before calling this function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    		if err != nil {
    			if writeBody && !test.readBody {
    				// This is an acceptable failure due to a possible TCP race:
    				// We were still writing data and the server hung up on us. A TCP
    				// implementation may send a RST if our request body data was known
    				// to be lost, which may trigger our reads to fail.
    				// See RFC 1122 page 88.
    				t.Logf("On test %#v, acceptable error from ReadString: %v", test, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/net/http/server.go

    type ResponseWriter interface {
    	// Header returns the header map that will be sent by
    	// [ResponseWriter.WriteHeader]. The [Header] map also is the mechanism with which
    	// [Handler] implementations can set HTTP trailers.
    	//
    	// Changing the header map after a call to [ResponseWriter.WriteHeader] (or
    	// [ResponseWriter.Write]) has no effect unless the HTTP status code was of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    	// Build list of all actions, assigning depth-first post-order priority.
    	// The original implementation here was a true queue
    	// (using a channel) but it had the effect of getting
    	// distracted by low-level leaf actions to the detriment
    	// of completing higher-level actions. The order of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	t.Fatalf("did not panic")
    }
    
    // Given
    //	type Outer struct {
    //		*Inner
    //		...
    //	}
    // the compiler generates the implementation of (*Outer).M dispatching to the embedded Inner.
    // The implementation is logically:
    //	func (p *Outer) M() {
    //		(p.Inner).M()
    //	}
    // but since the only change here is the replacement of one pointer receiver with another,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    		// TODO: this test fails, but it's just because
    		// fakeConn implements the optional Execer interface,
    		// so arguably this is the correct behavior. But
    		// maybe I should flesh out the fakeConn.Exec
    		// implementation so this properly fails.
    		// t.Errorf("expected error inserting nil name with Exec")
    	}
    
    	paramtype := reflect.TypeOf(spec.rows[0].nullParam)
    	bindVal := reflect.New(paramtype).Interface()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top