Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,523 for mParam (0.1 sec)

  1. src/go/types/context_test.go

    	{
    		// type nullaryP = func[P any]()
    		tparam := NewTypeParam(NewTypeName(nopos, nil, "P", nil), &emptyInterface)
    		nullaryP = NewSignatureType(nil, nil, []*TypeParam{tparam}, nil, nil, false)
    	}
    	{
    		// type nullaryQ = func[Q any]()
    		tparam := NewTypeParam(NewTypeName(nopos, nil, "Q", nil), &emptyInterface)
    		nullaryQ = NewSignatureType(nil, nil, []*TypeParam{tparam}, nil, nil, false)
    	}
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyContextManagerTest.groovy

            then:
            1 * action1.execute(_) >> { Ivy param ->
                ivy = param
                manager.withIvy(transformer)
            }
            1 * transformer.transform(_) >> { Ivy param ->
                assert param.is(ivy)
                manager.withIvy(action2)
            }
            1 * action2.execute(_) >> { Ivy param ->
                assert param.is(ivy)
            }
            0 * _._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. module.xml

    			<param name="module.groupId" value="org/codelibs/opensearch/module" />
    			<param name="module.name.prefix" value="" />
    			<param name="module.name" value="mapper-extras" />
    			<param name="module.version" value="${opensearch.version}" />
    			<param name="module.zip.version" value="${opensearch.version}" />
    		</antcall>
    		<!-- reindex -->
    		<antcall target="install.module">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 16 07:10:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. maven-api-impl/pom.xml

                  <params>
                    <param>forcedIOModelVersion=1.2.0</param>
                    <param>packageModelV3=org.apache.maven.settings</param>
                    <param>packageModelV4=org.apache.maven.api.settings</param>
                    <param>packageToolV4=org.apache.maven.settings.v4</param>
                    <param>locationTracking=true</param>
                    <param>generateLocationClasses=true</param>
                  </params>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/Logger.java

         * Logs the given message at the given log level.
         *
         * @param level the log level.
         * @param message the log message.
         */
        void log(LogLevel level, String message);
    
        /**
         * Logs the given message at the given log level.
         *
         * @param level the log level.
         * @param message the log message.
         * @param objects the log message parameters.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         *
         * @param path the file location
         * @param line the one-indexed line number
         * @param column the one-indexed column
         * @param length the length of the text
         * @return this
         * @since 8.6
         */
        ProblemSpec lineInFileLocation(String path, int line, int column, int length);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. tests/test_starlette_urlconvertors.py

    
    @app.get("/int/{param:int}")
    def int_convertor(param: int = Path()):
        return {"int": param}
    
    
    @app.get("/float/{param:float}")
    def float_convertor(param: float = Path()):
        return {"float": param}
    
    
    @app.get("/path/{param:path}")
    def path_convertor(param: str = Path()):
        return {"path": param}
    
    
    @app.get("/query/")
    def query_convertor(param: str = Query()):
        return {"query": param}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 27 14:46:06 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/spock/Spock2FilteringIntegrationTest.groovy

                    def "super unrolled test param=#param"() $unrolledTestBody
                }
            """
            file("src/test/groovy/SubClass.groovy") << """
                class SubClass extends SuperClass {
                    def "sub test"() $testBody
                    def "sub unrolled test"() $unrolledTestBody
                    def "sub unrolled test param=#param"() $unrolledTestBody
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

            when:
            proxy.doStuff('param')
    
            then:
            1 * target.doStuff('param') >> {
                assert Thread.currentThread() == testThread
            }
        }
    
        def blockingActorDispatchesMethodInvocationFromOneThreadAtATime() {
            def target = {param ->
                if (param == 'param') {
                    instant.param1Start
                    thread.block()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. test/escape_array.go

    type U [2]*string
    
    func bar(a, b *string) U { // ERROR "leaking param: a to result ~r0 level=0$" "leaking param: b to result ~r0 level=0$"
    	return U{a, b}
    }
    
    func foo(x U) U { // ERROR "leaking param: x to result ~r0 level=0$"
    	return U{x[1], x[0]}
    }
    
    func bff(a, b *string) U { // ERROR "leaking param: a to result ~r0 level=0$" "leaking param: b to result ~r0 level=0$"
    	return foo(foo(bar(a, b)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top