Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for rawFlags (0.19 sec)

  1. istioctl/pkg/tag/tag.go

    			Namespaces: tagNamespaces,
    		}
    		key := uniqTag{
    			revision: tagRevision,
    			tag:      tagName,
    		}
    		rawTags[key] = tagDesc
    	}
    	for k := range rawTags {
    		if k.tag != "" {
    			delete(rawTags, uniqTag{revision: k.revision})
    		}
    	}
    	tags := slices.SortFunc(maps.Values(rawTags), func(a, b tagDescription) int {
    		if r := cmp.Compare(a.Revision, b.Revision); r != 0 {
    			return r
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

        def classLoader = new GroovyClassLoader(getClass().classLoader)
        static final List<Class<? extends Serializable>> JDK_SCALAR_TYPES = ScalarTypes.TYPES.rawClass
    
        static interface NotAnnotatedInterface {}
    
        def "unmanaged type"() {
            expect:
            extract(NotAnnotatedInterface) instanceof UnmanagedImplStructSchema
        }
    
        @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/java/org/gradle/kotlin/dsl/fixtures/codegen/ClassToKClass.java

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.fixtures.codegen;
    
    import java.util.Collection;
    
    
    public interface ClassToKClass {
    
        @SuppressWarnings("rawtypes")
        void rawClass(Class type);
    
        void unknownClass(Class<?> type);
    
        void invariantClass(Class<Number> type);
    
        void covariantClass(Class<? extends Number> type);
    
        void contravariantClass(Class<? super Integer> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            def bindings = extract(TypeWithAbstractProperty, DelegateTypeWithImplementedProperty)
            expect:
            bindings.declaredViewSchemas*.type*.rawClass as List == [TypeWithAbstractProperty]
            bindings.delegateSchema.type.rawClass == DelegateTypeWithImplementedProperty
            bindings.managedProperties.isEmpty()
            bindings.methodBindings*.viewMethod*.name == ["getZ", "setZ"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

            ModelType<T> type = schema.getType();
            Class<? super T> rawClass = type.getRawClass();
            ModelType<? super T> rawCollectionType = ModelType.of(rawClass);
            if (TYPES.contains(rawCollectionType) && (schema.getElementTypeSchema() instanceof ScalarValueSchema)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

                assertGeneratedExtensions(
                    """
                    inline fun org.gradle.kotlin.dsl.fixtures.codegen.ClassToKClass.`rawClass`(`type`: kotlin.reflect.KClass<*>): Unit =
                        `rawClass`(`type`.java)
                    """,
                    """
                    inline fun org.gradle.kotlin.dsl.fixtures.codegen.ClassToKClass.`unknownClass`(`type`: kotlin.reflect.KClass<*>): Unit =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                if (parameterizedTargetType.getRawType() instanceof Class) {
                    Class<?> rawClass = (Class<?>) parameterizedTargetType.getRawType();
                    if (Iterable.class.isAssignableFrom(rawClass)) {
                        Type targetElementType = getElementType(parameterizedTargetType, 0);
                        return convertCollectionInternal(rawClass, targetElementType, (Iterable<?>) sourceObject, decoration, graphDetails);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/TypeResolver.java

          Class<?> rawClass = (Class<?>) parameterizedType.getRawType();
          TypeVariable<?>[] vars = rawClass.getTypeParameters();
          Type[] typeArgs = parameterizedType.getActualTypeArguments();
          checkState(vars.length == typeArgs.length);
          for (int i = 0; i < vars.length; i++) {
            map(new TypeVariableKey(vars[i]), typeArgs[i]);
          }
          visit(rawClass);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/TypeResolver.java

          Class<?> rawClass = (Class<?>) parameterizedType.getRawType();
          TypeVariable<?>[] vars = rawClass.getTypeParameters();
          Type[] typeArgs = parameterizedType.getActualTypeArguments();
          checkState(vars.length == typeArgs.length);
          for (int i = 0; i < vars.length; i++) {
            map(new TypeVariableKey(vars[i]), typeArgs[i]);
          }
          visit(rawClass);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

    class ManagedModelInitializerTest extends ProjectRegistrySpec {
    
        def classLoader = new GroovyClassLoader(getClass().classLoader)
        static final List<Class<?>> JDK_SCALAR_TYPES = ScalarTypes.TYPES.rawClass
    
        @Override
        protected NodeInitializerRegistry createNodeInitializerRegistry(ModelSchemaStore schemaStore, StructBindingsStore structBindingsStore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top