Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Chan, "chan", 0, 0},
    	{_Const, "const", 0, 0},
    	{_Continue, "continue", 0, 0},
    	{_Default, "default", 0, 0},
    	{_Defer, "defer", 0, 0},
    	{_Else, "else", 0, 0},
    	{_Fallthrough, "fallthrough", 0, 0},
    	{_For, "for", 0, 0},
    	{_Func, "func", 0, 0},
    	{_Go, "go", 0, 0},
    	{_Goto, "goto", 0, 0},
    	{_If, "if", 0, 0},
    	{_Import, "import", 0, 0},
    	{_Interface, "interface", 0, 0},
    	{_Map, "map", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/printer.go

    	case *RangeClause:
    		if n.Lhs != nil {
    			tok := _Assign
    			if n.Def {
    				tok = _Define
    			}
    			p.print(n.Lhs, blank, tok, blank)
    		}
    		p.print(_Range, blank, n.X)
    
    	case *ForStmt:
    		p.print(_For, blank)
    		if n.Init == nil && n.Post == nil {
    			if n.Cond != nil {
    				p.print(n.Cond, blank)
    			}
    		} else {
    			if n.Init != nil {
    				p.print(n.Init)
    				// TODO(gri) clean this up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    }
    repositories {
        mavenCentral()
    }
    dependencies {
        implementation(Libs.Kotlin.coroutines)
    }
    ----
    
    |<<#sec:applying_plugins_buildscript,3>>
    |Apply a *core*, *community* or *local* plugin needed _for the build script itself_.
    |<<#sec:applying_plugins_buildscript,The `buildscript` block in the build file>>
    a|
    [source,kotlin]
    ----
    buildscript {
      repositories {
        maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	TIOCSBRK                        = 0x2000a77b
    	TIOCCBRK                        = 0x2000a77a
    	TIOCSTI                         = 0x8001a772
    	TIOCGPGRP                       = 0x4004a777 // _IOR(167, 119, int)
    	TCSANOW                         = 0
    	TCSETS                          = 0 // equivalent to TCSANOW for tcsetattr
    	TCSADRAIN                       = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top