Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 155 for addF (0.04 sec)

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

    			if name := s.Label.Value; name != "_" {
    				lbl := NewLabel(s.Label.Pos(), check.pkg, name)
    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    					err.addf(lbl.pos, "label %s already declared", name)
    					err.addAltDecl(alt)
    					err.report()
    					// ok to continue
    				} else {
    					b.insert(s)
    					check.recordDef(s.Label, lbl)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/resolver.go

    				obj = resolve(name, obj)
    				err := check.newError(DuplicateDecl)
    				if pkg, ok := obj.(*PkgName); ok {
    					err.addf(alt, "%s already declared through import of %s", alt.Name(), pkg.Imported())
    					err.addAltDecl(pkg)
    				} else {
    					err.addf(alt, "%s already declared through dot-import of %s", alt.Name(), obj.Pkg())
    					// TODO(gri) dot-imported objects don't have a position; addAltDecl won't print anything
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/go/types/resolver.go

    				obj = resolve(name, obj)
    				err := check.newError(DuplicateDecl)
    				if pkg, ok := obj.(*PkgName); ok {
    					err.addf(alt, "%s already declared through import of %s", alt.Name(), pkg.Imported())
    					err.addAltDecl(pkg)
    				} else {
    					err.addf(alt, "%s already declared through dot-import of %s", alt.Name(), obj.Pkg())
    					// TODO(gri) dot-imported objects don't have a position; addAltDecl won't print anything
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

      %1 = "tfl.reshape"(%0, %shape1) : (tensor<16x4xf32>, tensor<1xi32>) -> tensor<64xf32>
      %2 = "tfl.reshape"(%0, %shape1) : (tensor<16x4xf32>, tensor<1xi32>) -> tensor<64xf32>
      %3 = arith.addf %1, %2 : tensor<64xf32>
      func.return %3 : tensor<64xf32>
    
    // CHECK-LABEL: func @reshape_removeAdjacentWithMultipleUse
    // CHECK:  %[[CST:.*]] = arith.constant dense<64> : tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/struct.go

    			check.recordDef(ident, fld)
    		}
    	}
    
    	// addInvalid adds an embedded field of invalid type to the struct for
    	// fields with errors; this keeps the number of struct fields in sync
    	// with the source as long as the fields are _ or have different names
    	// (go.dev/issue/25627).
    	addInvalid := func(ident *syntax.Name) {
    		typ = Typ[Invalid]
    		tag = ""
    		add(ident, true)
    	}
    
    	var prev syntax.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/call.go

    		var params []*Var
    		if sig.params != nil {
    			params = sig.params.vars
    		}
    		err := check.newError(WrongArgCount)
    		err.addf(at, "%s arguments in call to %s", qualifier, call.Fun)
    		err.addf(nopos, "have %s", check.typesSummary(operandTypes(args), false))
    		err.addf(nopos, "want %s", check.typesSummary(varTypes(params), sig.variadic))
    		err.report()
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "ADDF", argLength: 2, reg: fp21, asm: "ADDF", commutative: true}, // arg0 + arg1
    		{name: "ADDD", argLength: 2, reg: fp21, asm: "ADDD", commutative: true}, // arg0 + arg1
    		{name: "SUBF", argLength: 2, reg: fp21, asm: "SUBF"},                    // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. src/go/types/labels.go

    			if name := s.Label.Name; name != "_" {
    				lbl := NewLabel(s.Label.Pos(), check.pkg, name)
    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    					err.addf(lbl, "label %s already declared", name)
    					err.addAltDecl(alt)
    					err.report()
    					// ok to continue
    				} else {
    					b.insert(s)
    					check.recordDef(s.Label, lbl)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation.go

    			Name:   username,
    			Groups: groups,
    			Extra:  userExtra,
    			UID:    uid,
    		}
    		req = req.WithContext(request.WithUser(ctx, newUser))
    
    		oldUser, _ := request.UserFrom(ctx)
    		httplog.LogOf(req, w).Addf("%v is impersonating %v", userString(oldUser), userString(newUser))
    
    		ae := audit.AuditEventFrom(ctx)
    		audit.LogImpersonatedUser(ae, newUser)
    
    		// clear all the impersonation headers from the request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. src/go/types/call.go

    		var params []*Var
    		if sig.params != nil {
    			params = sig.params.vars
    		}
    		err := check.newError(WrongArgCount)
    		err.addf(at, "%s arguments in call to %s", qualifier, call.Fun)
    		err.addf(noposn, "have %s", check.typesSummary(operandTypes(args), false))
    		err.addf(noposn, "want %s", check.typesSummary(varTypes(params), sig.variadic))
    		err.report()
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top