Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for withT (0.16 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/PathNotationConverterTest.groovy

        def "with double nested closure "() {
            expect:
            "closure/path" == pathNotationParser.parseNotation({ "closure/path" });
        }
    
        def "with closure with null return value"() {
            expect:
            null == pathNotationParser.parseNotation({ null });
        }
    
        def "with Callable of unsupported return value"() {
            def customObj = new DefaultExcludeRule()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 30 16:46:40 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/dependencies-notations.toml

    [libraries]
    simple = { group = "foo", name = "bar", version = "1.0" }
    simple-with-rich1 = { group = "foo", name = "bar", version = { prefer = "1.0" } }
    simple-with-rich2 = { group = "foo", name = "bar", version.prefer = "1.0" }
    simple-with-rich3 = { group = "foo", name = "bar", version.require = "1.0" }
    simple-with-rich4 = { group = "foo", name = "bar", version.strictly = "1.0" }
    simple-with-rich5 = { group = "foo", name = "bar", version = { rejectAll = true } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/go/doc/testdata/issue12839.2.golden

    FUNCTIONS
    	// F1 should not be associated with T1 
    	func F1() (*T1, *T2)
    
    	// F10 should not be associated with T1. 
    	func F10() (T1, T2, error)
    
    	// F4 should not be associated with a type (same as F1) 
    	func F4() (a T1, b T2)
    
    	// F9 should not be associated with T1. 
    	func F9() (int, T1, T2)
    
    
    TYPES
    	// 
    	type T1 struct{}
    
    	// F2 should be associated with T1 
    	func F2() (a, b, c T1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 04 17:57:55 UTC 2018
    - 928 bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      }
    
      @Override
      public String toString() {
        return map.toString();
      }
    
      /**
       * If {@code key} is not already associated with a value or if {@code key} is associated with
       * zero, associate it with {@code newValue}. Returns the previous value associated with {@code
       * key}, or zero if there was no mapping for {@code key}.
       */
      long putIfAbsent(K key, long newValue) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiver.capturing.txt

    ExtensionReceiver[name: with; isMutated: false; displayText: this@with]
        with@fun R|kotlin/String|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE>
        R|kotlin/String|
    ExtensionReceiver[name: with; isMutated: false; displayText: this@with]
        with@fun R|Foo|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 356 bytes
    - Viewed (0)
  6. tests/test_multipart_installation.py

        with pytest.raises(RuntimeError, match=multipart_incorrect_install_error):
            app = FastAPI()
    
            @app.post("/")
            async def root(f: bytes = File()):
                return f  # pragma: nocover
    
    
    def test_incorrect_multipart_installed_multi_form(monkeypatch):
        monkeypatch.delattr("multipart.multipart.parse_options_header", raising=False)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/IncompatibilityCrossVersionSpec.groovy

        @TargetGradleVersion(">=3.3")
        def "can use plugin built with Gradle 3.0 with"() {
            expect:
            buildPluginWith("3.0")
            assertWorks()
        }
    
        // Gradle 3.2 and 3.2.1 leaked internal types that fail when used with
        // newer versions of Gradle.
        @Ignore
        @TargetGradleVersion(">=3.3")
        def "can use plugin built with Gradle 3.2.1 with"() {
            expect:
            buildPluginWith("3.2.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/go/doc/example_test.go

    	fmt.Printf("func %s - %s", p.Funcs[0].Name, p.Funcs[0].Doc)
    	fmt.Printf(" ⤷ example with suffix %q - %s", p.Funcs[0].Examples[0].Suffix, p.Funcs[0].Examples[0].Doc)
    
    	// Output:
    	// package p - This is the package comment.
    	// func Greet - This comment is associated with the Greet function.
    	//  ⤷ example with suffix "world" - This comment is associated with the ExampleGreet_world example.
    }
    
    func TestClassifyExamples(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/rule_test.go

    	                    </Rule>`,
    			expectedErr: errEmptyRuleStatus,
    		},
    		{ // Rule with invalid status
    			inputXML: ` <Rule>
    			                  <ID>rule with invalid status</ID>
                                  <Status>OK</Status>
    	                    </Rule>`,
    			expectedErr: errInvalidRuleStatus,
    		},
    		{ // Rule with negative values for ObjectSizeLessThan
    			inputXML: `<Rule>
    				<ID>negative-obj-size-less-than</ID>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            output.count("service:") == 6
            outputContains("service: created with value = 5")
            outputContains("service: created with value = 15")
            outputContains("service: value is 6")
            outputContains("service: value is 16")
            outputContains("service: closed with value 6")
            outputContains("service: closed with value 16")
    
            when:
            run("count")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top