Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,025 for blink (0.09 sec)

  1. tools/go-compile-without-link

    #!/bin/bash
    
    if [[ "${2}" == "-V=full" ]]; then
      "$@"
      exit 0
    fi
    case "$(basename ${1})" in
      link)
        # Output a dummy file
        touch "${3}"
        ;;
      *)
        "$@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 23:27:32 UTC 2023
    - 171 bytes
    - Viewed (0)
  2. src/net/parse_test.go

    		t.Fatal(err)
    	}
    	defer file.close()
    
    	lineno := 1
    	byteno := 0
    	for {
    		bline, berr := br.ReadString('\n')
    		if n := len(bline); n > 0 {
    			bline = bline[0 : n-1]
    		}
    		line, ok := file.readLine()
    		if (berr != nil) != !ok || bline != line {
    			t.Fatalf("%s:%d (#%d)\nbufio => %q, %v\nnet => %q, %v", filename, lineno, byteno, bline, berr, line, ok)
    		}
    		if !ok {
    			break
    		}
    		lineno++
    		byteno += len(line) + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 00:04:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/runtime/mfixalloc.go

    	arg    unsafe.Pointer
    	list   *mlink
    	chunk  uintptr // use uintptr instead of unsafe.Pointer to avoid write barriers
    	nchunk uint32  // bytes remaining in current chunk
    	nalloc uint32  // size of new chunks in bytes
    	inuse  uintptr // in-use bytes now
    	stat   *sysMemStat
    	zero   bool // zero allocations
    }
    
    // A generic linked list of blocks.  (Typically the block is bigger than sizeof(MLink).)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/go/printer/testdata/comments.golden

     */
    
    /*
    aligned in middle
    here
            not here
    */
    
    /*
    blank line in middle:
    
    with no leading spaces on blank line.
    */
    
    /*
       aligned in middle
       here
               not here
    */
    
    /*
    	blank line in middle:
    
    	with no leading spaces on blank line.
    */
    
    func _() {
    	/*
    	 * line
    	 * of
    	 * stars
    	 */
    
    	/*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/list10.txt

    -- input --
    
    	1. This list
    	2. Starts the comment
    	3. And also has a blank line before it.
    
    All of which is a little weird.
    -- gofmt --
     1. This list
     2. Starts the comment
     3. And also has a blank line before it.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 247 bytes
    - Viewed (0)
  6. test/fixedbugs/issue15470.dir/a.go

    	M0(_ int)
    	M1(x, _ int) // _ (blank) caused crash
    	M2() (x, _ int)
    }
    
    type S struct{}
    
    func (S) M0(_ int) {}
    func (S) M1(x, _ int) {}
    func (S) M2() (x, _ int) { return }
    func (_ S) M3() {}
    
    // Snippet from x/tools/godoc/analysis/analysis.go.
    // Offending code from #5470.
    type Link interface {
    	Start() int
    	End() int
    	Write(w io.Writer, _ int, start bool) // _ (blank) caused crash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 00:42:13 UTC 2016
    - 429 bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

            'Name'        | _
            'nAme'        | _
            'naMe'        | _
            'namE'        | _
            'NamE'        | _
        }
    
        def "demonstrate Java vs. Ant Manifest classes behavior wrt. blank lines"() {
            given:
            TestFile noBlankLinesManifestFile = tmpDir.file('noBlankLinesManifestFile')
            TestFile blankLinesManifestFile = tmpDir.file('blankLinesManifestFile')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/LinkRendererTest.groovy

            when:
            def link = renderer.link(type('java.util.List', true), listener)
    
            then:
            format(link) == '<classname><ulink url="https://docs.oracle.com/javase/javaVersion/docs/api/java/util/List.html"><classname>List</classname></ulink>[]</classname>'
        }
    
        def rendersLinkToPrimitiveType() {
            when:
            def link = renderer.link(type('boolean'), listener)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/syntax.go

    // The handler may wish to report an error. In this case, pos is the
    // current parser position, not the position of the pragma itself.
    // Blank specifies whether the line is blank before the pragma.
    type PragmaHandler func(pos Pos, blank bool, text string, current Pragma) Pragma
    
    // Parse parses a single Go source file from src and returns the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/validation/validation_test.go

    		},
    		"invalid mode non-existent": {
    			mode:         kubeproxyconfig.ProxyMode("non-existing"),
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("ProxyMode"), "non-existing", "must be iptables, ipvs, nftables or blank (blank means the best-available proxy [currently iptables])")},
    		},
    	} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top