Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Ordinary (0.16 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        host_compute_out_ops.push_back(out_full);
        full_outputs.push_back(out_full);
      }
    
      return mlir::success();
    }
    
    // Create the _XlaHostComputeMlir with `inputs` and `outputs` for the ordinary
    // outside_compilation case.
    // Output `full_outputs`, which is the outputs of the `_XlaHostComputeMlir` and
    // add the `_XlaHostComputeMlir` to `host_compute_out_ops`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    // the Go spec, for simplicity, and for improved robustness in the presence
    // of syntax errors. For instance, in method declarations, the receiver is
    // treated like an ordinary parameter list and thus may contain multiple
    // entries where the spec permits exactly one. Consequently, the corresponding
    // field in the AST (ast.FuncDecl.Recv) field is not restricted to one entry.
    package parser
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	workFilePath string
    )
    
    type MainModuleSet struct {
    	// versions are the module.Version values of each of the main modules.
    	// For each of them, the Path fields are ordinary module paths and the Version
    	// fields are empty strings.
    	// versions is clipped (len=cap).
    	versions []module.Version
    
    	// modRoot maps each module in versions to its absolute filesystem path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    			// this the start of a type parameter list, with some caveats:
    			// a single name followed by "]" tilts the decision towards an
    			// array declaration; a type parameter type that could also be
    			// an ordinary expression but which is followed by a comma tilts
    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    			if r, rest := p.parsePerlClassEscape(t, re.Rune0[:0]); r != nil {
    				re.Rune = r
    				t = rest
    				p.push(re)
    				break BigSwitch
    			}
    			p.reuse(re)
    
    			// Ordinary single-character escape.
    			if c, t, err = p.parseEscape(t); err != nil {
    				return nil, err
    			}
    			p.literal(c)
    		}
    		lastRepeat = repeat
    	}
    
    	p.concat()
    	if p.swapVerticalBar() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    package tls
    
    import (
    	"errors"
    	"fmt"
    	"slices"
    	"strings"
    
    	"golang.org/x/crypto/cryptobyte"
    )
    
    // The marshalingFunction type is an adapter to allow the use of ordinary
    // functions as cryptobyte.MarshalingValue.
    type marshalingFunction func(b *cryptobyte.Builder) error
    
    func (f marshalingFunction) Marshal(b *cryptobyte.Builder) error {
    	return f(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    			Name:     bc.name,
    			Type:     ptr.To(bc.chainType),
    			Hook:     ptr.To(bc.hook),
    			Priority: ptr.To(bc.priority),
    		}
    		tx.Add(chain)
    		tx.Flush(chain)
    	}
    
    	// Create and flush ordinary chains and add rules jumping to them
    	createdChains := sets.New[string]()
    	for _, c := range nftablesJumpChains {
    		ensureChain(c.dstChain, tx, createdChains)
    		tx.Add(&knftables.Rule{
    			Chain: c.srcChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    	pos token.Pos   // token position
    	tok token.Token // one token look-ahead
    	lit string      // token literal
    
    	// Non-syntactic parser control
    	exprLev int // < 0: in control clause, >= 0: in expression
    
    	// Ordinary identifier scopes
    	pkgScope   *ast.Scope        // pkgScope.Outer == nil
    	topScope   *ast.Scope        // top-most scope; may be pkgScope
    	unresolved []*ast.Ident      // unresolved identifiers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    		return false
    	}
    
    	name := sf.name()
    
    	// Special case: always show runtime.gopanic frame
    	// in the middle of a stack trace, so that we can
    	// see the boundary between ordinary code and
    	// panic-induced deferred code.
    	// See golang.org/issue/5832.
    	if name == "runtime.gopanic" && !firstFrame {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    		panic("unexpected parenthesized expression")
    	}
    	return false
    }
    
    // isTypeElem reports whether x is a (possibly parenthesized) type element expression.
    // The result is false if x could be a type element OR an ordinary (value) expression.
    func isTypeElem(x ast.Expr) bool {
    	switch x := x.(type) {
    	case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
    		return true
    	case *ast.UnaryExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top