Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,097 for annot1 (0.16 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. src/cmd/internal/obj/x86/aenum.go

    	AKADDB
    	AKADDD
    	AKADDQ
    	AKADDW
    	AKANDB
    	AKANDD
    	AKANDNB
    	AKANDND
    	AKANDNQ
    	AKANDNW
    	AKANDQ
    	AKANDW
    	AKMOVB
    	AKMOVD
    	AKMOVQ
    	AKMOVW
    	AKNOTB
    	AKNOTD
    	AKNOTQ
    	AKNOTW
    	AKORB
    	AKORD
    	AKORQ
    	AKORTESTB
    	AKORTESTD
    	AKORTESTQ
    	AKORTESTW
    	AKORW
    	AKSHIFTLB
    	AKSHIFTLD
    	AKSHIFTLQ
    	AKSHIFTLW
    	AKSHIFTRB
    	AKSHIFTRD
    	AKSHIFTRQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/DefaultTypeConverterTest.groovy

            e.message == "Cannot convert value '${value}' to type Long"
            e.cause instanceof ArithmeticException
    
            where:
            value               | _
            LARGE               | _
            LARGE as BigDecimal | _
            LARGE as String     | _
            12.123              | _
            "0.123"             | _
        }
    
        def "cannot convert arbitrary type to Long"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/internal/types/testdata/check/expr3.go

    // license that can be found in the LICENSE file.
    
    package expr3
    
    import "time"
    
    func indexes() {
    	_ = 1 /* ERROR "cannot index" */ [0]
    	_ = indexes /* ERROR "cannot index" */ [0]
    	_ = ( /* ERROR "cannot slice" */ 12 + 3)[1:2]
    
    	var a [10]int
    	_ = a[true /* ERROR "cannot convert" */ ]
    	_ = a["foo" /* ERROR "cannot convert" */ ]
    	_ = a[1.1 /* ERROR "truncated" */ ]
    	_ = a[1.0]
    	_ = a[- /* ERROR "negative" */ 1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top