Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for _For (0.07 sec)

  1. src/cmd/link/testdata/linkname/badlinkname.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Existing pull linknames in the wild are allowed _for now_,
    // for legacy reason. Test a function and a method.
    // NOTE: this may not be allowed in the future. Don't do this!
    
    package main
    
    import (
    	_ "reflect"
    	"unsafe"
    )
    
    //go:linkname noescape runtime.noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:48:00 UTC 2024
    - 620 bytes
    - Viewed (0)
  2. src/cmd/link/testdata/linkname/fastrand.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Linkname fastrand is allowed _for now_, as it has a
    // linknamed definition, for legacy reason.
    // NOTE: this may not be allowed in the future. Don't do this!
    
    package main
    
    import _ "unsafe"
    
    //go:linkname fastrand runtime.fastrand
    func fastrand() uint32
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 457 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/token_string.go

    	_ = x[_DotDotDot-21]
    	_ = x[_Break-22]
    	_ = x[_Case-23]
    	_ = x[_Chan-24]
    	_ = x[_Const-25]
    	_ = x[_Continue-26]
    	_ = x[_Default-27]
    	_ = x[_Defer-28]
    	_ = x[_Else-29]
    	_ = x[_Fallthrough-30]
    	_ = x[_For-31]
    	_ = x[_Func-32]
    	_ = x[_Go-33]
    	_ = x[_Goto-34]
    	_ = x[_If-35]
    	_ = x[_Import-36]
    	_ = x[_Interface-37]
    	_ = x[_Map-38]
    	_ = x[_Package-39]
    	_ = x[_Range-40]
    	_ = x[_Return-41]
    	_ = x[_Select-42]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 02:28:24 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/tokens.go

    	_Case        // case
    	_Chan        // chan
    	_Const       // const
    	_Continue    // continue
    	_Default     // default
    	_Defer       // defer
    	_Else        // else
    	_Fallthrough // fallthrough
    	_For         // for
    	_Func        // func
    	_Go          // go
    	_Goto        // goto
    	_If          // if
    	_Import      // import
    	_Interface   // interface
    	_Map         // map
    	_Package     // package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    // They are good synchronization points in case of syntax
    // errors and (usually) shouldn't be skipped over.
    const stopset uint64 = 1<<_Break |
    	1<<_Const |
    	1<<_Continue |
    	1<<_Defer |
    	1<<_Fallthrough |
    	1<<_For |
    	1<<_Go |
    	1<<_Goto |
    	1<<_If |
    	1<<_Return |
    	1<<_Select |
    	1<<_Switch |
    	1<<_Type |
    	1<<_Var
    
    // advance consumes tokens until it finds a token of the stopset or followlist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/README.md

    The generator framework is a loose Model/View/Controller arrangement:
    
    The *Model* classes live in the ***model/*** directory. They are representations
    of the `OpDef` and `ApiDef` protos, normalized and resolved.
    
    > _For example, an `OpDef` proto's `ArgDef` members contain a type string, which
    > must be dereferenced to an `AttrDef` by name to determine its type. This
    > `AttrDef` proto message in turn contains a type string which may need to be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.23.md

    There are no known mitigations to this vulnerability.
    
    **Fixed Versions**:
    
    - kubelet v1.22.14
    - kubelet v1.23.11
    - kubelet v1.24.5
    - kubelet v1.25.0
    
    
    To upgrade, refer to this documentation _For core Kubernetes:_ https://kubernetes.io/docs/tasks/administer-cluster/cluster-management/#upgrading-a-cluster 
    
    **Detection**:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top