Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 6,025 for blink (0.08 sec)

  1. JavadocStyleGuide.md

     * This & that.
     */
    ```
    
    ### 1.1.5 Links
    
    The `{@link <class or method reference>}` tag is specifically used to link to the Javadoc of other classes and methods:
    
    ```java
    /**
     * The url argument must specify an absolute {@link classname}. The name
     */
    ```
    
    To add a reference to an external URL, use `<a href="URL#value">label</a>`.
    This adds a link as defined by `URL#value`.
    The `URL#value` is a relative or absolute URL:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/go/types/signature.go

    		_, rname, rparams := check.unpackRecv(recvPar.List[0].Type, true)
    		if len(rparams) > 0 {
    			// The scope of the type parameter T in "func (r T[T]) f()"
    			// starts after f, not at "r"; see #52038.
    			scopePos := ftyp.Params.Pos()
    			tparams := check.declareTypeParams(nil, rparams, scopePos)
    			sig.rparams = bindTParams(tparams)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. .github/PULL_REQUEST_TEMPLATE

        "This change modifies Go to ___________"
      + Lowercase verb after the colon
      + No trailing period
      + Keep the title as short as possible. ideally under 76 characters or shorter
    + No Markdown
    + The first PR comment (this one) is wrapped at 76 characters, unless it's
      really needed (ASCII art, table, or long link)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 02:07:46 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. src/os/user/user.go

    	// On Windows, this is a SID in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Gid string
    	// Username is the login name.
    	Username string
    	// Name is the user's real or display name.
    	// It might be blank.
    	// On POSIX systems, this is the first (or only) entry in the GECOS field
    	// list.
    	// On Windows, this is the user's display name.
    	// On Plan 9, this is the contents of /dev/user.
    	Name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class Renderer {
     public:
      explicit Renderer(RendererContext context);
    
     protected:
      // Append a blank line.
      Renderer &BlankLine();
    
      // Append a line of source code, left-justified (not indented).
      // Use for preprocessors directives ("#include"), namespaces, etc.
      Renderer &CodeLine(const string &text);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/syscall/fs_js.go

    	return n, nil
    }
    
    func Link(path, link string) error {
    	if err := checkPath(path); err != nil {
    		return err
    	}
    	if err := checkPath(link); err != nil {
    		return err
    	}
    	_, err := fsCall("link", path, link)
    	return err
    }
    
    func Symlink(path, link string) error {
    	if err := checkPath(path); err != nil {
    		return err
    	}
    	if err := checkPath(link); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/testing.md

    Es basiert auf <a href="https://www.python-httpx.org" class="external-link" target="_blank">HTTPX</a>, welches wiederum auf der Grundlage von requests konzipiert wurde, es ist also sehr vertraut und intuitiv.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:20:01 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls2/decls2a.go

    func (x *undefined /* ERROR "undefined" */) m() {}
    
    func (pi /* ERROR "not a type" */) m1() {}
    func (x pi /* ERROR "not a type" */) m2() {}
    func (x *pi /* ERROR "not a type" */ ) m3() {}
    
    // Blank types.
    type _ struct { m int }
    type _ struct { m int }
    
    func (_ /* ERROR "cannot use _" */) m() {}
    func m(_ /* ERROR "cannot use _" */) {}
    
    // Methods with receiver base type declared in another file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/go/doc/comment/print.go

    }
    
    func (p *Printer) docLinkURL(link *DocLink) string {
    	if p.DocLinkURL != nil {
    		return p.DocLinkURL(link)
    	}
    	return link.DefaultURL(p.DocLinkBaseURL)
    }
    
    // DefaultURL constructs and returns the documentation URL for l,
    // using baseURL as a prefix for links to other packages.
    //
    // The possible forms returned by DefaultURL are:
    //   - baseURL/ImportPath, for a link to another package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Cache.kt

            responseHeaders = responseHeadersBuilder.build()
    
            if (url.isHttps) {
              val blank = source.readUtf8LineStrict()
              if (blank.isNotEmpty()) {
                throw IOException("expected \"\" but was \"$blank\"")
              }
              val cipherSuiteString = source.readUtf8LineStrict()
              val cipherSuite = CipherSuite.forJavaName(cipherSuiteString)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top