Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 724 for typed (0.04 sec)

  1. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

                    Class<? extends Annotation> annotationType = a.annotationType();
                    if ("org.eclipse.sisu.Typed".equals(annotationType.getName())
                            || "javax.enterprise.inject.Typed".equals(annotationType.getName())
                            || "jakarta.enterprise.inject.Typed".equals(annotationType.getName())) {
                        try {
                            Class<?>[] value =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/fake/clientset_generated.go

    	fakeapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/fake"
    	apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1"
    	fakeapiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/fake"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 21:36:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. 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)
  4. src/sync/atomic/value.go

    			// we can wait with active spinning.
    			continue
    		}
    		// First store completed. Check type and overwrite data.
    		if typ != np.typ {
    			panic("sync/atomic: compare and swap of inconsistently typed value into Value")
    		}
    		// Compare old and current via runtime equality check.
    		// This allows value types to be compared, something
    		// not offered by the package functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    // FilterCompiler contains a function to assist with converting types and values to/from CEL-typed values.
    type FilterCompiler interface {
    	// Compile is used for the cel expression compilation
    	Compile(expressions []ExpressionAccessor, optionalDecls OptionalVariableDeclarations, envType environment.Type) Filter
    }
    
    // OptionalVariableBindings provides expression bindings for optional CEL variables.
    type OptionalVariableBindings struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K 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/core-api/src/main/java/org/gradle/api/attributes/AttributeContainer.java

    /**
     * An attribute container is a container of {@link Attribute attributes}, which are
     * strongly typed named entities. Such a container is responsible for storing and
     * getting attributes in a type safe way. In particular, attributes are strongly typed,
     * meaning that when we get a value from the container, the returned value type is
     * inferred from the type of the attribute. In a way, an attribute container is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeSelectionUtils.java

                Attribute<?> extraAttribute = extraAttributesArray[i];
                // Some of these attributes might be weakly typed, e.g. coming as Strings from an
                // artifact repository. We always check whether the schema has a more strongly typed
                // version of an attribute and use that one instead to apply its disambiguation rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. 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)
  10. src/internal/trace/value.go

    // license that can be found in the LICENSE file.
    
    package trace
    
    import "fmt"
    
    // Value is a dynamically-typed value obtained from a trace.
    type Value struct {
    	kind   ValueKind
    	scalar uint64
    }
    
    // ValueKind is the type of a dynamically-typed value from a trace.
    type ValueKind uint8
    
    const (
    	ValueBad ValueKind = iota
    	ValueUint64
    )
    
    // Kind returns the ValueKind of the value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top