Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,227 for para2 (0.05 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-param-util.h"
    #include "gtest/internal/gtest-port.h"
    
    #if GTEST_HAS_PARAM_TEST
    
    namespace testing {
    
    // Forward declarations of ValuesIn(), which is implemented in
    // include/gtest/gtest-param-test.h.
    template <typename ForwardIterator>
    internal::ParamGenerator<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-param-util.h"
    #include "gtest/internal/gtest-port.h"
    
    #if GTEST_HAS_PARAM_TEST
    
    namespace testing {
    
    // Forward declarations of ValuesIn(), which is implemented in
    // include/gtest/gtest-param-test.h.
    template <typename ForwardIterator>
    internal::ParamGenerator<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiatorTest.groovy

            String param1
            Number param2
    
            @Inject
            HasInjectConstructor(String param1, Number param2) {
                this.param1 = param1
                this.param2 = param2
            }
        }
    
        static class AcceptsPrimitiveTypes {
            int param1
            boolean param2
    
            @Inject
            AcceptsPrimitiveTypes(int param1, boolean param2) {
                this.param1 = param1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 04:41:06 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/MethodMetaDataTest.groovy

            method.addParameter('param', new TypeMetaData('ParamType').addTypeArg(new TypeMetaData("Type1")))
            method.addParameter('param2', new TypeMetaData('ParamType2'))
    
            expect:
            method.signature == 'ReturnType method(ParamType<Type1> param, ParamType2 param2)'
            method.overrideSignature == 'method(ParamType, ParamType2)'
        }
    
        def formatsOverrideSignatureForVarargsParameter() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-param-util.h"
    #include "gtest/internal/gtest-port.h"
    
    #if GTEST_HAS_PARAM_TEST
    
    namespace testing {
    
    // Forward declarations of ValuesIn(), which is implemented in
    // include/gtest/gtest-param-test.h.
    template <typename ForwardIterator>
    internal::ParamGenerator<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  7. cluster/gce/windows/testonly/user-profile.psm1

    function New-LocalUser
    {
        [CmdletBinding()]
        [Alias()]
        [OutputType([int])]
        Param
        (
            # Param1 help description
            [Parameter(Mandatory=$true,
                       ValueFromPipelineByPropertyName=$true,
                       Position=0)]
            $userName,
            # Param2 help description
            [string]
            $password
        )
     
        $system = [ADSI]"WinNT://$env:COMPUTERNAME";
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectionUsingLenientConstructorSelectorTest.groovy

            HasConstructors(String param1, Number param2) {
            }
            HasConstructors(String param1, boolean param2) {
            }
        }
    
        static class AcceptsPrimitiveTypes {
            int param1
            boolean param2
    
            AcceptsPrimitiveTypes(int param1, boolean param2) {
                this.param1 = param1
                this.param2 = param2
            }
        }
    
        class NonStatic {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilderTest.groovy

                def param = new ParameterMetaData("p");
                param.type = new TypeMetaData(it)
                return param
            }
            _ * method.ownerClass >> classMetaData
            _ * method.returnType >> new TypeMetaData(args.returnType ?: 'ReturnType')
            _ * javadocConverter.parse(method, !null) >> ({[parse("<para>${args.comment ?: 'comment'}</para>")]} as DocComment)
            return method
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  10. test/escape_param.go

    	j := 0
    	sink, _ = param1(&i, &j)
    }
    
    // in -> other in
    func param2(p1 *int, p2 **int) { // ERROR "leaking param: p1$" "p2 does not escape$"
    	*p2 = p1
    }
    
    func caller2a() {
    	i := 0 // ERROR "moved to heap: i$"
    	var p *int
    	param2(&i, &p)
    	_ = p
    }
    
    func caller2b() {
    	i := 0 // ERROR "moved to heap: i$"
    	var p *int
    	param2(&i, &p)
    	sink = p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 8.9K bytes
    - Viewed (0)
Back to top