Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 875 for typed (0.09 sec)

  1. api/maven-api-di/src/main/java/org/apache/maven/api/di/Typed.java

    import java.lang.annotation.Target;
    
    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Target({FIELD, METHOD, TYPE})
    @Retention(RUNTIME)
    @Documented
    public @interface Typed {
        Class<?>[] value() default {};
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. fastapi/py.typed

    Steve B <******@****.***> 1557567827 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 11 09:43:47 UTC 2019
    - Viewed (0)
  3. cmd/typed-errors.go

    Taran Pelkey <******@****.***> 1716916456 -0400
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/typeconverter.go

    	"sigs.k8s.io/structured-merge-diff/v4/typed"
    	"sigs.k8s.io/structured-merge-diff/v4/value"
    )
    
    // TypeConverter allows you to convert from runtime.Object to
    // typed.TypedValue and the other way around.
    type TypeConverter interface {
    	ObjectToTyped(runtime.Object, ...typed.ValidationOptions) (*typed.TypedValue, error)
    	TypedToObject(*typed.TypedValue) (runtime.Object, error)
    }
    
    type typeConverter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/internal/internal.go

    package internal
    
    import (
    	"fmt"
    	"sync"
    
    	typed "sigs.k8s.io/structured-merge-diff/v4/typed"
    )
    
    func Parser() *typed.Parser {
    	parserOnce.Do(func() {
    		var err error
    		parser, err = typed.NewParser(schemaYAML)
    		if err != nil {
    			panic(fmt.Sprintf("Failed to parse schema: %v", err))
    		}
    	})
    	return parser
    }
    
    var parserOnce sync.Once
    var parser *typed.Parser
    var schemaYAML = typed.YAMLObject(`types:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

        /**
         * Performs a lookup for given typed component.
         *
         * @param type The component type.
         * @return The component.
         * @param <T> The component type.
         * @throws LookupException if no such component or there is some provisioning related issue.
         */
        @Nonnull
        <T> T lookup(Class<T> type);
    
        /**
         * Performs a lookup for given typed component.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/internal/internal.go

    package internal
    
    import (
    	"fmt"
    	"sync"
    
    	typed "sigs.k8s.io/structured-merge-diff/v4/typed"
    )
    
    func Parser() *typed.Parser {
    	parserOnce.Do(func() {
    		var err error
    		parser, err = typed.NewParser(schemaYAML)
    		if err != nil {
    			panic(fmt.Sprintf("Failed to parse schema: %v", err))
    		}
    	})
    	return parser
    }
    
    var parserOnce sync.Once
    var parser *typed.Parser
    var schemaYAML = typed.YAMLObject(`types:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. internal/grid/trace.go

    	// Should match SingleHandler.Call checks.
    	switch typed := v.(type) {
    	case *MSS:
    		trace.Path += typed.ToQuery()
    	case map[string]string:
    		m := MSS(typed)
    		trace.Path += m.ToQuery()
    	case *URLValues:
    		trace.Path += typed.Values().Encode()
    	case *NoPayload, *Bytes:
    		trace.Path = fmt.Sprintf("%s?payload=%T", trace.Path, typed)
    	case string:
    		trace.Path = fmt.Sprintf("%s?%s", trace.Path, typed)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top