Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,198 for annot1 (0.1 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. 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)
  6. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            "a::b"      | "Cannot locate tasks that match 'a::b'. The path should not include an empty segment (try 'a:b' instead)."
            "a:b::c"    | "Cannot locate tasks that match 'a:b::c'. The path should not include an empty segment (try 'a:b:c' instead)."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on $message", 2)
                problem("Build file 'build.gradle': line 4: Project ':' cannot access 'java' extension on $message", 2)
                problem("Build file 'build.gradle': line 5: Project ':' cannot access 'java' extension on $message", 2)
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            def e = thrown(IllegalArgumentException)
            e.message == 'Cannot get the value of a property of type java.lang.Boolean as the provider associated with this property returned a value of type java.lang.Integer.'
    
            when:
            property.getOrNull()
    
            then:
            def e2 = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

                problem("Build file 'build.gradle': line 10: Project ':' cannot access 'Project.afterEvaluate' functionality on another project ':a'")
                problem("Build file 'build.gradle': line 11: Project ':' cannot access 'myExtension' extension on another project ':a'")
                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on another project ':a'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/builtins0.go

    	type S []byte
    	type T string
    	var t T
    	_ = append(s, "foo" /* ERRORx `cannot use .* in argument to append` */ )
    	_ = append(s, "foo"...)
    	_ = append(S(s), "foo" /* ERRORx `cannot use .* in argument to append` */ )
    	_ = append(S(s), "foo"...)
    	_ = append(s, t /* ERROR "cannot use t" */ )
    	_ = append(s, t...)
    	_ = append(s, T("foo")...)
    	_ = append(S(s), t /* ERROR "cannot use t" */ )
    	_ = append(S(s), t...)
    	_ = append(S(s), T("foo")...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top