Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Giant (0.04 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    		return
    	}
    	if len(lv.vars) > 10000 || len(lv.f.Blocks) > 10000 {
    		// Be careful to avoid doing too much work.
    		// Bail if >10000 variables or >10000 blocks.
    		// Otherwise, giant functions make this experiment generate too much code.
    		return
    	}
    	if lv.f.Name == "forkAndExecInChild" {
    		// forkAndExecInChild calls vfork on some platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-65704`](https://youtrack.jetbrains.com/issue/KT-65704) K2: `computeCommonSuperType` of flexible type with recursive captured type argument produces giant multi-level-deep type
    - [`KT-65410`](https://youtrack.jetbrains.com/issue/KT-65410) K2: ABSTRACT_CLASS_MEMBER_NOT_IMPLEMENTED  for 'removeAt' in KJK hierarchy
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/net/net.go

    // for context.DeadlineExceeded. See mapErr.
    // It is also used when Dialer.Deadline is exceeded.
    // error.Is(errTimeout, context.DeadlineExceeded) returns true.
    //
    // TODO(iant): We could consider changing this to os.ErrDeadlineExceeded
    // in the future, if we make
    //
    //	errors.Is(os.ErrDeadlineExceeded, context.DeadlineExceeded)
    //
    // return true.
    var errTimeout error = &timeoutError{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	case "gccgo":
    		id, _, err := b.gccToolID(BuildToolchain.linker(), "go")
    		if err != nil {
    			base.Fatalf("%v", err)
    		}
    		fmt.Fprintf(h, "link %s %s\n", id, ldBuildmode)
    		// TODO(iant): Should probably include cgo flags here.
    	}
    }
    
    // link is the action for linking a single command.
    // Note that any new influence on this logic must be reported in b.linkActionID above as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top