Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 421 for _Assign (0.1 sec)

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

    	// names and literals
    	_Name    // name
    	_Literal // literal
    
    	// operators and operations
    	// _Operator is excluding '*' (_Star)
    	_Operator // op
    	_AssignOp // op=
    	_IncOp    // opop
    	_Assign   // =
    	_Define   // :=
    	_Arrow    // <-
    	_Star     // *
    
    	// delimiters
    	_Lparen    // (
    	_Lbrack    // [
    	_Lbrace    // {
    	_Rparen    // )
    	_Rbrack    // ]
    	_Rbrace    // }
    	_Comma     // ,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/printer.go

    			p.print(blank, n.Type)
    		}
    		if n.Values != nil {
    			p.print(blank, _Assign, blank, n.Values)
    		}
    
    	case *TypeDecl:
    		if n.Group == nil {
    			p.print(_Type, blank)
    		}
    		p.print(n.Name)
    		if n.TParamList != nil {
    			p.printParameterList(n.TParamList, _Type)
    		}
    		p.print(blank)
    		if n.Alias {
    			p.print(_Assign, blank)
    		}
    		p.print(n.Type)
    
    	case *VarDecl:
    		if n.Group == nil {
    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. src/cmd/compile/internal/syntax/parser.go

    		p.syntaxError("expected " + tokstring(tok))
    		p.advance()
    	}
    }
    
    // gotAssign is like got(_Assign) but it also accepts ":="
    // (and reports an error) for better parser error recovery.
    func (p *parser) gotAssign() bool {
    	switch p.tok {
    	case _Define:
    		p.syntaxError("expected =")
    		fallthrough
    	case _Assign:
    		p.next()
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/assign/assign.go

    	"golang.org/x/tools/go/ast/inspector"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name:     "assign",
    	Doc:      analysisutil.MustExtractDoc(doc, "assign"),
    	URL:      "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/assign",
    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/assign.go

    		dsts[i] = typecheck.AssignExpr(v.Nname.(*ir.Name))
    	}
    
    	n.Results = ascompatee(n.Op(), dsts, n.Results)
    	return n
    }
    
    // check assign type list to
    // an expression list. called in
    //
    //	expr-list = func()
    func ascompatet(nl ir.Nodes, nr *types.Type) []ir.Node {
    	if len(nl) != nr.NumFields() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    while loop body has a control barrier (`%barrier`) at the end which forces
    a dependency and the two assign variable ops must wait for each other to
    complete before starting the next iteration. Transforming these control
    outputs to data outputs removes the dependency between the two assign
    variable ops, thus allowing them to run in parallel across iterations.
    
    Before:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. .github/workflows/auto-assign-pr-to-author.yml

    name: 'Auto Assign PR to Author'
    on:
      pull_request:
        types: [opened]
    
    permissions: {}
    
    jobs:
      add-reviews:
        permissions:
          contents: read  # for kentaro-m/auto-assign-action to fetch config file
          pull-requests: write  # for kentaro-m/auto-assign-action to assign PR reviewers
        runs-on: ubuntu-latest
        steps:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 381 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyExtensions.kt

    import java.io.File
    
    
    /**
     * Assign value: T to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: T?) {
        this.set(value)
    }
    
    
    /**
     * Assign value: Provider<T> to a property with assign operator
     *
     * @since 8.2
     */
    fun <T> Property<T>.assign(value: Provider<out T?>) {
        this.set(value)
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      else
        ReplaceExecute(execute_launch, merged_execute_launch, var_access_info);
    
      // Remove the assign ops.
      for (const auto& entry : var_access_info.per_resource_info) {
        const auto& info = entry.getSecond();
        if (info.assign) info.assign->erase();
      }
    
      // Remove the read ops if they have no more uses.
      for (const auto& entry : var_access_info.per_resource_info) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

        private static final String INPUTS_FIELD_NAME = "__inputs__";
        private static final String RULE_FACTORY_FIELD_NAME = "__rule_factory__";
        private static final Token ASSIGN = new Token(Types.ASSIGN, "=", -1, -1);
    
        private final String scriptSourceDescription;
        private final URI location;
        private final SourceUnit sourceUnit;
        private InputReferences inputs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top