Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,311 for doens (0.05 sec)

  1. src/go/doc/comment/testdata/list.txt

         • Using multiple bullets.
              * Indentation does not matter.
         + Lots of bullets.
    More text.
    
    -- gofmt --
    Text.
    - Not a list.
      - Here is the list.
      - Using multiple bullets.
      - Indentation does not matter.
      - Lots of bullets.
    
    More text.
    
    -- text --
    Text. - Not a list.
      - Here is the list.
      - Using multiple bullets.
      - Indentation does not matter.
      - Lots of bullets.
    
    More text.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 776 bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/11-language-change.yml

          description: If so, how does this proposal differ?
          placeholder: |
           Yes or No
    
           If yes, 
            1. Mention the related proposals 
            2. then describe how this proposal differs       
        validations:
          required: true
    
      - type: textarea
        id: error-handling-proposal
        attributes:
          label: Does this affect error handling?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue60933.go

    	g(writer, file /* ERROR "type *os.File of file does not match inferred type interface{Write(p []byte) (n int, err error)} for T" */)
    }
    
    // Different named interface types do not match.
    func _() {
    	g(io.ReadWriter(nil), io.ReadWriter(nil))
    	g(io.ReadWriter(nil), io /* ERROR "does not match" */ .Writer(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 26 18:33:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. build-logic/packaging/src/test/kotlin/gradlebuild/packaging/GradleDistributionInstallTest.kt

            assertSucceeds()
        }
    
        @Test
        fun `does not install to a file`() {
            val file = File(target, "some_file.txt").also {
                it.writeText("some content")
            }
            target = file
    
            assertFails("Install directory $file is not valid: it is actually a file")
            assertTrue(file.exists())
        }
    
        @Test
        fun `does not install to non-empty dir without lib`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/go/doc/synopsis_test.go

    	{"Package こんにちは。世界", 26, "Package こんにちは。"},
    	{"Package 안녕.世界", 17, "Package 안녕."},
    	{"Package foo does bar.", 21, "Package foo does bar."},
    	{"Copyright 2012 Google, Inc. Package foo does bar.", 27, ""},
    	{"All Rights reserved. Package foo does bar.", 20, ""},
    	{"All rights reserved. Package foo does bar.", 20, ""},
    	{"Authors: ******@****.***. Package foo does bar.", 21, ""},
    	{"typically invoked as ``go tool asm'',", 37, "typically invoked as “go tool asm”,"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue30898.go

    	// Dummy implementation for non-debug build.
    	// A non-empty implementation would be enabled with a build tag.
    }
    
    func bar() { // ERROR "can inline bar"
    	value := 10
    	debugf("value is %d", value) // ERROR "inlining call to debugf" "value does not escape" "\.\.\. argument does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:45 UTC 2021
    - 676 bytes
    - Viewed (0)
  7. pkg/config/host/name_test.go

    		{"wildcarded sub-domain does not match domain", "foo.com", "*.foo.com", false},
    		{"wildcarded sub-domain does not match domain - order doesn't matter", "*.foo.com", "foo.com", false},
    
    		{"long wildcard does not match short host", "*.foo.bar.baz", "baz", false},
    		{"long wildcard does not match short host - order doesn't matter", "baz", "*.foo.bar.baz", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue13799.go

    	}
    }
    
    func test2(iter int) {
    
    	const maxI = 500
    	m := make(map[int][]int) // ERROR "make\(map\[int\]\[\]int\) does not escape$"
    
    	// var fn func()
    	for i := 0; i < maxI; i++ {
    		var fn func() // this makes it work, because fn stays off heap
    		j := 0
    		fn = func() { // ERROR "func literal does not escape$"
    			m[i] = append(m[i], 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValue.java

         * Does not calculate the value on demand and does not block if the value is currently being calculated.
         *
         * <p>Rethrows any exception that happened while calculating the value</p>
         */
        T get() throws IllegalStateException;
    
        /**
         * Returns the result of calculating the value, failing if it has not been calculated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue27557.go

    	f := t.noescape // ERROR "t.noescape does not escape"
    	f()
    }
    
    func f2() {
    	var t T       // ERROR "moved to heap"
    	f := t.escape // ERROR "t.escape does not escape"
    	f()
    }
    
    func f3() {
    	var t T        // ERROR "moved to heap"
    	f := t.returns // ERROR "t.returns does not escape"
    	sink = f()
    }
    
    type T struct{}
    
    func (t *T) noescape()   {}           // ERROR "t does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 949 bytes
    - Viewed (0)
Back to top