Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,637 for annot1 (0.22 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

         * Example:
         * ```
         * interface Base
         *
         * typealias FirstAlias = @Anno1 Base
         * typealias SecondAlias = @Anno2 FirstAlias
         *
         * fun foo(): @Anno3 SecondAlias = TODO()
         * ```
         * The return type of `foo` will be `@Anno3 @Anno2 @Anno1 Base` instead of `@Anno3 SecondAlias`
         */
        public val KaType.fullyExpandedType: KaType
            get() = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/file/store.go

    		// TODO: populate
    		annots := u.GetAnnotations()
    		if annots == nil {
    			annots = map[string]string{}
    		}
    		jsonfm, err := json.Marshal(fieldMap)
    		if err != nil {
    			return nil, err
    		}
    		annots[FieldMapKey] = string(jsonfm)
    		jsonsource, err := json.Marshal(source)
    		if err != nil {
    			return nil, err
    		}
    		annots[ReferenceKey] = string(jsonsource)
    		u.SetAnnotations(annots)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/math/big/int.go

    	}
    
    	// x & (-y) == x & ^(y-1) == x &^ (y-1)
    	y1 := nat(nil).sub(y.abs, natOne)
    	z.abs = z.abs.andNot(x.abs, y1)
    	z.neg = false
    	return z
    }
    
    // AndNot sets z = x &^ y and returns z.
    func (z *Int) AndNot(x, y *Int) *Int {
    	if x.neg == y.neg {
    		if x.neg {
    			// (-x) &^ (-y) == ^(x-1) &^ ^(y-1) == ^(x-1) & (y-1) == (y-1) &^ (x-1)
    			x1 := nat(nil).sub(x.abs, natOne)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/stmt0.go

    func issue6487() {
    	type S struct{x int}
    	_ = &S /* ERROR "cannot take address" */ {}.x
    	_ = &( /* ERROR "cannot take address" */ S{}.x)
    	_ = (&S{}).x
    	S /* ERROR "cannot assign" */ {}.x = 0
    	(&S{}).x = 0
    
    	type M map[string]S
    	var m M
    	m /* ERROR "cannot assign to struct field" */ ["foo"].x = 0
    	_ = &( /* ERROR "cannot take address" */ m["foo"].x)
    	_ = &m /* ERROR "cannot take address" */ ["foo"].x
    }
    
    func issue6766a() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/noder.go

    	case len(decl.NameList) > 1:
    		return errors.New("go:embed cannot apply to multiple vars")
    	case decl.Values != nil:
    		return errors.New("go:embed cannot apply to var with initializer")
    	case decl.Type == nil:
    		// Should not happen, since Values == nil now.
    		return errors.New("go:embed cannot apply to var without type")
    	case withinFunc:
    		return errors.New("go:embed cannot apply to var inside func")
    	case !types.AllowsGoVersion(1, 16):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            ex.message == "Group cannot be null"
    
            when:
            descriptor.includeGroupAndSubgroups(null)
    
            then:
            ex = thrown()
            ex.message == "Group prefix cannot be null"
    
            when:
            descriptor.includeModule("foo", null)
    
            then:
            ex = thrown()
            ex.message == "Module name cannot be null"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            "organisation" | ""         | "version"       | "module name cannot be empty"
            "organisation" | "module"   | ""              | "revision cannot be empty"
            "org\t"        | "module"   | "version"       | "organisation cannot contain ISO control character '\\u0009'"
            "organisation" | "module\n" | "version"       | "module name cannot contain ISO control character '\\u000a'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptor.java

            addInclude(group, moduleName, version, MatcherKind.SIMPLE);
        }
    
        @Override
        public void includeVersionByRegex(String groupRegex, String moduleNameRegex, String versionRegex) {
            checkNotNull(groupRegex, "Group regex cannot be null");
            checkNotNull(moduleNameRegex, "Module name regex cannot be null");
            checkNotNull(versionRegex, "Version regex cannot be null");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            null      | "classifier"   | "extension cannot be null"
            "ext"     | ""             | "classifier cannot be an empty string. Use null instead"
            "ex\r"    | "classifier"   | "extension cannot contain ISO control character '\\u000d'"
            "ex/"     | "classifier"   | "extension cannot contain '/'"
            "ext"     | "classi\u0090fier" | "classifier cannot contain ISO control character '\\u0090'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectDecoratedTest.groovy

        }
    
        def "cannot attach @Inject annotation to methods of ExtensionAware"() {
            when:
            generator.generate(ExtensibleBeanWithInject)
    
            then:
            def e = thrown(ClassGenerationException)
            e.cause.message == "Cannot use @Inject annotation on method ExtensibleBeanWithInject.getExtensions()."
        }
    
        def "cannot attach @Inject annotation to final method"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top