Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for _typ (0.16 sec)

  1. src/cmd/compile/internal/types2/builtins.go

    		// both argument types must be identical
    		if !Identical(x.typ, y.typ) {
    			check.errorf(x, InvalidComplex, invalidOp+"%v (mismatched types %s and %s)", call, x.typ, y.typ)
    			return
    		}
    
    		// the argument types must be of floating-point type
    		// (applyTypeFunc never calls f with a type parameter)
    		f := func(typ Type) Type {
    			assert(!isTypeParam(typ))
    			if t, _ := under(typ).(*Basic); t != nil {
    				switch t.kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            final Map<String, Object> firstLineMap = new HashMap<>();
            final Map<String, Object> firstLineInnerMap = new HashMap<>();
            firstLineInnerMap.put("_index", index);
            firstLineInnerMap.put("_type", type);
            firstLineInnerMap.put("_id", item.getId());
            firstLineMap.put("index", firstLineInnerMap);
    
            final Map<String, Object> secondLine = new HashMap<>();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/runtime/chan.go

    	dataqsiz uint           // size of the circular queue
    	buf      unsafe.Pointer // points to an array of dataqsiz elements
    	elemsize uint16
    	closed   uint32
    	timer    *timer // timer feeding this chan
    	elemtype *_type // element type
    	sendx    uint   // send index
    	recvx    uint   // receive index
    	recvq    waitq  // list of recv waiters
    	sendq    waitq  // list of send waiters
    
    	// lock protects all fields in hchan, as well as several
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/runtime/stkframe.go

    	return
    }
    
    var methodValueCallFrameObjs [1]stackObjectRecord // initialized in stackobjectinit
    
    func stkobjinit() {
    	var abiRegArgsEface any = abi.RegArgs{}
    	abiRegArgsType := efaceOf(&abiRegArgsEface)._type
    	if abiRegArgsType.Kind_&abi.KindGCProg != 0 {
    		throw("abiRegArgsType needs GC Prog, update methodValueCallFrameObjs")
    	}
    	// Set methodValueCallFrameObjs[0].gcdataoff so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/decodesym.go

    		return arch.ByteOrder.Uint64(p)
    	default:
    		Exitf("dwarf: decode inuxi %d", sz)
    		panic("unreachable")
    	}
    }
    
    func commonsize(arch *sys.Arch) int      { return abi.CommonSize(arch.PtrSize) }      // runtime._type
    func structfieldSize(arch *sys.Arch) int { return abi.StructFieldSize(arch.PtrSize) } // runtime.structfield
    func uncommonSize(arch *sys.Arch) int    { return int(abi.UncommonSize()) }           // runtime.uncommontype
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/text/template/exec.go

    		argv[i] = s.evalArg(dot, typ.In(i), args[i])
    	}
    	// Now the ... args.
    	if typ.IsVariadic() {
    		argType := typ.In(typ.NumIn() - 1).Elem() // Argument is a slice.
    		for ; i < len(args); i++ {
    			argv[i] = s.evalArg(dot, argType, args[i])
    		}
    	}
    	// Add final value if necessary.
    	if !isMissing(final) {
    		t := typ.In(typ.NumIn() - 1)
    		if typ.IsVariadic() {
    			if numIn-1 < numFixed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    		"google.com.", "google.com.",
    	},
    	{
    		"ldap", "tcp", "google.com.",
    		"google.com.", "google.com.",
    	},
    
    	// non-standard back door
    	{
    		"", "", "_ldap._tcp.google.com",
    		"google.com.", "google.com.",
    	},
    	{
    		"", "", "_ldap._tcp.google.com.",
    		"google.com.", "google.com.",
    	},
    }
    
    var backoffDuration = [...]time.Duration{time.Second, 5 * time.Second, 30 * time.Second}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/internal/reflectlite/all_test.go

    func TestTypeOf(t *testing.T) {
    	// Special case for nil
    	if typ := TypeOf(nil); typ != nil {
    		t.Errorf("expected nil type for nil value; got %v", typ)
    	}
    	for _, test := range typeOfTests {
    		v := ValueOf(test.a)
    		if !v.IsValid() {
    			continue
    		}
    		typ := TypeOf(test.a)
    		if typ != v.Type() {
    			t.Errorf("TypeOf(%v) = %v, but ValueOf(%v).Type() = %v", test.a, typ, test.a, v.Type())
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * However, it is guaranteed to be the same version of Gradle. For more information on the Gradle Daemon, please consult the
         * <a href="https://docs.gradle.org/current/userguide/gradle_daemon.html" target="_top">User Manual</a>.
         *
         * @return The home directory. May return null.
         */
        @Nullable
        File getGradleHomeDir();
    
        /**
         * Returns the parent build of this build, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/walk.go

    func mayCall(n ir.Node) bool {
    	// When instrumenting, any expression might require function calls.
    	if base.Flag.Cfg.Instrumenting {
    		return true
    	}
    
    	isSoftFloat := func(typ *types.Type) bool {
    		return types.IsFloat[typ.Kind()] || types.IsComplex[typ.Kind()]
    	}
    
    	return ir.Any(n, func(n ir.Node) bool {
    		// walk should have already moved any Init blocks off of
    		// expressions.
    		if len(n.Init()) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top