Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for typeName (0.16 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/ConfigurationCacheInstrumentationProcessorTest.groovy

            outputFile.text == originalOutput
        }
    
        private withAnnotatedType(String typeName) {
            sourceFile "my/${typeName}.java", """
                package my;
    
                import org.gradle.internal.instrumentation.api.annotations.*;
    
                @SpecificJvmCallInterceptors(generatedClassName = "my.Interceptors")
                class $typeName {
                    @InterceptCalls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

        }
    
        private static boolean isNullableCtAnnotation(Object ann) {
            if (Proxy.isProxyClass(ann.class)) {
                def typeName = (Proxy.getInvocationHandler(ann) as AnnotationImpl).annotation.typeName
                return NULLABLE_ANNOTATIONS.any { it.name == typeName }
            }
            return false
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/TypeValidationDataSpec.java

        TypeValidationDataSpec pluginId(String pluginId);
        TypeValidationDataSpec propertyName(String propertyName);
        TypeValidationDataSpec parentPropertyName(String parentPropertyName);
        TypeValidationDataSpec typeName(String typeName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. src/go/types/object_test.go

    )
    
    func TestIsAlias(t *testing.T) {
    	check := func(obj *TypeName, want bool) {
    		if got := obj.IsAlias(); got != want {
    			t.Errorf("%v: got IsAlias = %v; want %v", obj, got, want)
    		}
    	}
    
    	// predeclared types
    	check(Unsafe.Scope().Lookup("Pointer").(*TypeName), false)
    	for _, name := range Universe.Names() {
    		if obj, _ := Universe.Lookup(name).(*TypeName); obj != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/GradleLazyType.java

        }
    
        GradleLazyType(Type type) {
            this.type = type;
        }
    
        public Type asType() {
            return type;
        }
    
        public TypeName asTypeName() {
            return TypeUtils.typeName(type);
        }
    
        public static boolean isAnyOf(Type type) {
            for (GradleLazyType gradleType : values()) {
                if (gradleType.type != null && gradleType.type.equals(type)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeparam.go

    // constraint is non-nil, it must be fully defined.
    func NewTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	return (*Checker)(nil).newTypeParam(obj, constraint)
    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	// Always increment lastID, even if it is not used.
    	id := nextID()
    	if check != nil {
    		check.nextID++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    		return m
    	case types.TypeType:
    		return m.typeValue
    	}
    	return types.NewErr("disallowed conversion from %q to %q", m.typeValue.TypeName(), typeVal.TypeName())
    }
    
    // Equal returns true if the other object is the same pointer-wise.
    func (m *MapValue) Equal(other ref.Val) ref.Val {
    	otherMap, ok := other.(*MapValue)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(other)
    	}
    	return types.Bool(m == otherMap)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    		cl := n.(*ast.CompositeLit)
    
    		typ := pass.TypesInfo.Types[cl].Type
    		if typ == nil {
    			// cannot determine composite literals' type, skip it
    			return
    		}
    		typeName := typ.String()
    		if whitelist && unkeyedLiteral[typeName] {
    			// skip whitelisted types
    			return
    		}
    		var structuralTypes []types.Type
    		switch typ := aliases.Unalias(typ).(type) {
    		case *types.TypeParam:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    }
    
    func dumpBlocks(bs []md.Block, depth int) {
    	for _, b := range bs {
    		dumpBlock(b, depth)
    	}
    }
    
    func dumpBlock(b md.Block, depth int) {
    	typeName := strings.TrimPrefix(fmt.Sprintf("%T", b), "*markdown.")
    	dprintf(depth, "%s\n", typeName)
    	switch b := b.(type) {
    	case *md.Paragraph:
    		dumpInlines(b.Text.Inline, depth+1)
    	case *md.Heading:
    		dumpInlines(b.Text.Inline, depth+1)
    	case *md.List:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    #if GTEST_OS_SYMBIAN
      // Streams a value (either a pointer or not) to this object.
      template <typename T>
      inline Message& operator <<(const T& value) {
        StreamHelper(typename internal::is_pointer<T>::type(), value);
        return *this;
      }
    #else
      // Streams a non-pointer value to this object.
      template <typename T>
      inline Message& operator <<(const T& val) {
        // Some libraries overload << for STL containers.  These
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top