Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 296 for sotype (0.32 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

    import org.jetbrains.kotlin.name.Name
    
    public sealed interface KaType : KaLifetimeOwner, KaAnnotated {
        public val nullability: KaTypeNullability
    
        /**
         * The abbreviated type for this expanded [KaType], or `null` if this type has not been expanded from an abbreviated type or the
         * abbreviated type cannot be resolved.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/fix/cftype.go

    	// (*unsafe.Pointer)(x) where x is type *bad -> (*unsafe.Pointer)(unsafe.Pointer(x))
    	// (*bad.type)(x) where x is type *unsafe.Pointer -> (*bad.type)(unsafe.Pointer(x))
    	walk(f, func(n any) {
    		if n == nil {
    			return
    		}
    		// Find pattern like (*a.b)(x)
    		c, ok := n.(*ast.CallExpr)
    		if !ok {
    			return
    		}
    		if len(c.Args) != 1 {
    			return
    		}
    		p, ok := c.Fun.(*ast.ParenExpr)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:25:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/fix/gotypes.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"go/ast"
    	"strconv"
    )
    
    func init() {
    	register(gotypesFix)
    }
    
    var gotypesFix = fix{
    	name: "gotypes",
    	date: "2015-07-16",
    	f:    gotypes,
    	desc: `Change imports of golang.org/x/tools/go/{exact,types} to go/{constant,types}`,
    }
    
    func gotypes(f *ast.File) bool {
    	fixed := fixGoTypes(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. test/typeparam/dottype.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func f[T any](x interface{}) T {
    	return x.(T)
    }
    func f2[T any](x interface{}) (T, bool) {
    	t, ok := x.(T)
    	return t, ok
    }
    
    type I interface {
    	foo()
    }
    
    type myint int
    
    func (myint) foo() {
    }
    
    type myfloat float64
    
    func (myfloat) foo() {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. test/typeparam/dottype.out

    Keith Randall <******@****.***> 1627346462 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 29 17:15:21 UTC 2021
    - 47 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ParamsMatchingConstructorSelector.java

                    while (param != null && toParam < parameterTypes.length) {
                        Class<?> toType = parameterTypes[toParam];
                        if (toType.isPrimitive()) {
                            toType = JavaReflectionUtil.getWrapperTypeForPrimitiveType(toType);
                        }
                        if (toType.isInstance(param)) {
                            break;
                        }
                        toParam++;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/SsoManager.java

        protected final List<SsoAuthenticator> authenticatorList = new ArrayList<>();
    
        public boolean available() {
            final String ssoType = getSsoType();
            if (logger.isDebugEnabled()) {
                logger.debug("sso.type: {}", ssoType);
            }
            return !Constants.NONE.equals(ssoType);
        }
    
        public LoginCredential getLoginCredential() {
            if (available()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    	/* Symbol table */
    	for _, s := range f.loaderSymbols {
    		lds := &XcoffLdSym64{
    			Loffset: uint32(stlen + 2),
    			Lsmtype: s.smtype,
    			Lsmclas: s.smclas,
    		}
    		sym := s.sym
    		switch s.smtype {
    		default:
    			ldr.Errorf(sym, "unexpected loader symbol type: 0x%x", s.smtype)
    		case XTY_ENT | XTY_SD:
    			lds.Lvalue = uint64(ldr.SymValue(sym))
    			lds.Lscnum = f.getXCOFFscnum(ldr.SymSect(sym))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/OsddHelper.java

                return true;
            }
    
            if (!Constants.AUTO.equalsIgnoreCase(osddLinkEnabled)) {
                return false;
            }
    
            final String ssoType = fessConfig.getSsoType();
            return StringUtil.isBlank(ssoType) || Constants.NONE.equalsIgnoreCase(ssoType);
        }
    
        public boolean hasOpenSearchFile() {
            return osddFile != null;
        }
    
        public StreamResponse asStream() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/Style.java

    import java.util.EnumSet;
    import java.util.Set;
    
    public class Style {
        public static final Style NORMAL = Style.of(Color.DEFAULT);
        public enum Emphasis {
            BOLD, REVERSE, ITALIC
        }
    
        public enum Color {
            DEFAULT, YELLOW, RED, GREY, GREEN, BLACK
        }
    
        public final Set<Emphasis> emphasises;
        public final Color color;
    
        public Style(Set<Emphasis> emphasises, Color color) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top