Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 292 for typed (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    #define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
    
    // This header implements typed tests and type-parameterized tests.
    
    // Typed (aka type-driven) tests repeat the same test for types in a
    // list.  You must know which types you want to test with when writing
    // typed tests. Here's how you do it:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    #define GTEST_INCLUDE_GTEST_GTEST_TYPED_TEST_H_
    
    // This header implements typed tests and type-parameterized tests.
    
    // Typed (aka type-driven) tests repeat the same test for types in a
    // list.  You must know which types you want to test with when writing
    // typed tests. Here's how you do it:
    
    #if 0
    
    // First, define a fixture class template.  It should be parameterized
    // by a type.  Remember to derive it from testing::Test.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

            public static <T> ModelType<T> typed(Type type) {
                return new Simple<T>(type);
            }
    
            public static <T> ModelType<T> typed(TypeWrapper wrapper) {
                return new Simple<T>(wrapper);
            }
    
            public Simple(Type type) {
                super(wrap(type));
            }
    
            public Simple(TypeWrapper type) {
                super(type);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. pkg/wasm/convert_test.go

    	"google.golang.org/protobuf/proto"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/emptypb"
    	"google.golang.org/protobuf/types/known/structpb"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/xds"
    )
    
    type mockCache struct {
    	wantSecret []byte
    	wantPolicy PullPolicy
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/wasm/convert.go

    		return nil, nil, nil, fmt.Errorf("failed to unmarshal extension config resource: %w", err)
    	}
    
    	// Wasm filter can be configured using typed struct and Wasm filter type
    	switch {
    	case ec.GetTypedConfig() == nil:
    		return nil, nil, nil, fmt.Errorf("typed extension config %+v does not contain any typed config", ec)
    	case ec.GetTypedConfig().TypeUrl == model.WasmHTTPFilterType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                Object qualifier = key.getQualifier();
                Class<?> type = key.getRawType();
                Set<Class<?>> types = getBoundTypes(type.getAnnotation(Typed.class), type);
                for (Type t : Types.getAllSuperTypes(type)) {
                    if (types == null || types.contains(Types.getRawType(t))) {
                        bind(Key.ofType(t, qualifier), binding);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                plugins {
                    id 'com.acme.typed-attributes' version '$version'
                } """ : """
                buildscript {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
                    dependencies {
                        classpath 'com.acme.typed-attributes:com.acme.typed-attributes.gradle.plugin:$version'
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

        }
    
        def "picks the generic object setter if the typed setter does not match the value type"() {
            when:
            def property = writeableProperty(JavaTestSubject, "myProperty", File.class)
    
            then:
            property.type == Object.class
        }
    
        def "picks the typed setter if it is the better match"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

            }
            verifyAll(receivedProblem(7)) {
                fqid == 'deprecation:typed-task'
                contextualLabel == 'Typed task has been deprecated.'
            }
            verifyAll(receivedProblem(8)) {
                fqid == 'deprecation:typed-task'
                contextualLabel == 'Typed task has been deprecated.'
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                            "${task.name}: ${task.type.simpleName}",
                            tasks.getByName(task.name, task.type).description,
                            descriptionMatcher
                        )
                    }
                }
            }
        }
    
        companion object {
    
            class TaskNameAndType(
                val name: String,
                val type: KClass<out Task> = Task::class
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top