Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,025 for blink (0.12 sec)

  1. src/internal/types/testdata/check/decls2/decls2b.go

    // Double declarations across package files
    const c_double /* ERROR "redeclared" */ = 0
    type t_double  /* ERROR "redeclared" */ int
    var v_double /* ERROR "redeclared" */ int
    func f_double /* ERROR "redeclared" */ () {}
    
    // Blank methods need to be type-checked.
    // Verify by checking that errors are reported.
    func (T /* ERROR "undefined" */ ) _() {}
    func (T1) _(undefined /* ERROR "undefined" */ ) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. cni/cmd/istio-cni/main.go

    		os.Exit(1)
    	}
    }
    
    func runPlugin() error {
    	// Setup initial logging now. We will override it with proper logging over UDS later, but at this point we don't have the config
    	// read yet and do not want to be completely blind to logs.
    	if err := log.Configure(plugin.GetLoggingOptions(nil)); err != nil {
    		return err
    	}
    	defer func() {
    		// Log sync will send logs to install-cni container via UDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. .github/PULL_REQUEST_TEMPLATE.md

    See here for guidance on getting permanent links to files: https://help.github.com/en/articles/getting-permanent-links-to-files
    
    Please use the following format for linking documentation:
    - [KEP]: <link>
    - [Usage]: <link>
    - [Other doc]: <link>
    -->
    ```docs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/struct.go

    	}
    	if len(tags) > len(fields) {
    		panic("more tags than fields")
    	}
    	s := &Struct{fields: fields, tags: tags}
    	s.markComplete()
    	return s
    }
    
    // NumFields returns the number of fields in the struct (including blank and embedded fields).
    func (s *Struct) NumFields() int { return len(s.fields) }
    
    // Field returns the i'th field for 0 <= i < NumFields().
    func (s *Struct) Field(i int) *Var { return s.fields[i] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_bad_import.txt

    package direct
    import _ "example.com/notfound"
    
    -- example.com/indirect/indirect.go --
    package indirect
    import _ "example.com/direct"
    
    -- example.com/notfound/README --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/plist.go

    			q := ctxt.StartUnsafePoint(prev, newprog)
    			q.Pc = p.Pc
    			q.Link = p
    			// Advance to the end of unsafe point.
    			for p.Link != nil && isUnsafePoint(p.Link) {
    				p = p.Link
    			}
    			if p.Link == nil {
    				break // Reached the end, don't bother marking the end
    			}
    			p = ctxt.EndUnsafePoint(p, newprog, prevPcdata)
    			p.Pc = p.Link.Pc
    			continue
    		}
    		if isRestartable(p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			if _, ok := b.(*md.Empty); !ok {
    				doc.Blocks = append(doc.Blocks, b)
    			}
    		}
    		// Merge link references.
    		for key, link := range newdoc.Links {
    			if doc.Links[key] != nil {
    				return nil, fmt.Errorf("duplicate link reference %q; second in %s", key, filename)
    			}
    			doc.Links[key] = link
    		}
    	}
    	// Remove headings with empty contents.
    	doc.Blocks = removeEmptySections(doc.Blocks)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/syscall/exec_windows_test.go

    	}
    
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "child" {
    		// in child process
    		dumpPath := os.Getenv("GO_WANT_HELPER_PROCESS_FILE")
    		if dumpPath == "" {
    			fmt.Fprintf(os.Stderr, "Dump file path cannot be blank.")
    			os.Exit(1)
    		}
    		err := os.WriteFile(dumpPath, []byte(fmt.Sprintf("%d", os.Getppid())), 0644)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "Error writing dump file: %v", err)
    			os.Exit(2)
    		}
    		os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_loong64.go

    	Nivcsw   int64
    }
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    type _Gid_t uint32
    
    type Stat_t struct {
    	Dev               uint64
    	Ino               uint64
    	Mode              uint32
    	Nlink             uint32
    	Uid               uint32
    	Gid               uint32
    	Rdev              uint64
    	X__pad1           uint64
    	Size              int64
    	Blksize           int32
    	X__pad2           int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

     * This &amp; 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)
Back to top