Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,670 for doens (0.23 sec)

  1. .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)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

        }
    
        @Requires(
            value = IntegTestPreconditions.NotConfigCached,
            reason = "Config cache does not support extensions during execution, so cause does not include any provenance information"
        )
        def "fails when property with no value because source property has no value is queried"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/transfer/AccessorBackedExternalResourceTest.groovy

            then:
            def e2 = thrown(RuntimeException)
            e2 == failure
    
            1 * action.execute(_, metaData) >> { throw failure }
            0 * _
        }
    
        def "returns null and does not write to file when resource does not exist"() {
            def name = new ExternalResourceName("resource")
            def file = tmpDir.file("out")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top