Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 226 for typed (0.08 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		if lp.Operation == networking.EnvoyFilter_Patch_MERGE {
    			// proto merge doesn't work well when merging two filters with ANY typed configs
    			// especially when the incoming cp.Value is a struct that could contain the json config
    			// of an ANY typed filter. So convert our filter's typed config to Struct (retaining the any
    			// typed output of json)
    			if filter.GetTypedConfig() == nil {
    				// TODO(rshriram): fixme
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

    @ToolingApiVersion(">=7.3")
    @TargetGradleVersion(">=7.3")
    @Timeout(value = 10, unit = TimeUnit.MINUTES)
    class DependencyArtifactDownloadProgressEventCrossVersionTest extends AbstractHttpCrossVersionSpec {
    
        def "generates typed events for downloads during dependency resolution"() {
            def modules = setupBuildWithArtifactDownloadDuringConfiguration()
            modules.useLargeJars()
    
            when:
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

                foundType += " with a different ClassLoader";
            }
            throw new IllegalArgumentException(String.format("Unexpected type for attribute '%s' provided. Expected a value of type %s but found a value of type %s.", attribute.getName(), otherAttributeType.getName(), foundType));
        }
    
        @Override
        public boolean isPresent() {
            return attribute != null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top