Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for palmer (0.14 sec)

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

    // and clears them from the parser state.
    func (p *parser) takePragma() Pragma {
    	prag := p.pragma
    	p.pragma = nil
    	return prag
    }
    
    // clearPragma is called at the end of a statement or
    // other Go form that does NOT accept a pragma.
    // It sends the pragma back to the pragma handler
    // to be reported as unused.
    func (p *parser) clearPragma() {
    	if p.pragma != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    // license that can be found in the LICENSE file.
    
    // Package parser implements a parser for Go source files. Input may be
    // provided in a variety of forms (see the various Parse* functions); the
    // output is an abstract syntax tree (AST) representing the Go source. The
    // parser is invoked through one of the Parse* functions.
    
    package parser
    
    import (
    	"fmt"
    	"go/ast"
    	"go/scanner"
    	"go/token"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	fmt.Println(a...)
    }
    
    func trace(p *parser, msg string) *parser {
    	p.printTrace(msg, "(")
    	p.indent++
    	return p
    }
    
    // Usage pattern: defer un(trace(p, "..."))
    func un(p *parser) {
    	p.indent--
    	p.printTrace(")")
    }
    
    // maxNestLev is the deepest we're willing to recurse during parsing
    const maxNestLev int = 1e5
    
    func incNestLev(p *parser) *parser {
    	p.nestLev++
    	if p.nestLev > maxNestLev {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. kotlin-js-store/yarn.lock

        "@webassemblyjs/helper-buffer" "1.11.6"
        "@webassemblyjs/wasm-gen" "1.11.6"
        "@webassemblyjs/wasm-parser" "1.11.6"
    
    "@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5":
      version "1.11.6"
      resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    	size        map[*Regexp]int64 // regexp compiled size, for size limit check
    }
    
    func (p *parser) newRegexp(op Op) *Regexp {
    	re := p.free
    	if re != nil {
    		p.free = re.Sub0[0]
    		*re = Regexp{}
    	} else {
    		re = new(Regexp)
    		p.numRegexp++
    	}
    	re.Op = op
    	return re
    }
    
    func (p *parser) reuse(re *Regexp) {
    	if p.height != nil {
    		delete(p.height, re)
    	}
    	re.Sub0[0] = p.free
    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/index/suffixarray/sais2.go

    		// If k-1 is L-type, queue k for processing later in this loop.
    		// If k-1 is S-type (text[k-1] < text[k]), queue -k to save for the caller.
    		// If k is zero, k-1 doesn't exist, so we only need to leave it
    		// for the caller. The caller can't tell the difference between
    		// an empty slot and a non-empty zero, but there's no need
    		// to distinguish them anyway: the final suffix array will end up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (p *Parser) Start(msg []byte) (Header, error) {
    	if p.msg != nil {
    		*p = Parser{}
    	}
    	p.msg = msg
    	var err error
    	if p.off, err = p.header.unpack(msg, 0); err != nil {
    		return Header{}, &nestedError{"unpacking header", err}
    	}
    	p.section = sectionQuestions
    	return p.header.header(), nil
    }
    
    func (p *Parser) checkAdvance(sec section) error {
    	if p.section < sec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

            return LogicalResult::failure();
          }
          if (!llvm::isa<func::FuncOp>(symbol)) {
            func.emitError() << "Invalid callee: " << caller.getF();
            return LogicalResult::failure();
          }
          auto callee =
              llvm::dyn_cast<func::FuncOp>(symbol_table.lookup(caller.getF()));
          auto& src_region = callee.getRegion();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        auto operand = caller->getOperand(index);
        builder.setInsertionPoint(caller);
        new_operands[index] = builder.create<TF::ReadVariableOp>(
            caller->getLoc(), ArrayRef<Type>{new_type}, ArrayRef<Value>{operand});
        caller->setOperand(index, new_operands[index]);
        if (updated_index < 0) continue;
        builder.setInsertionPointAfter(caller);
        builder.create<TF::AssignVariableOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    // allocated to size `ninputs`. The caller should build `cond_graph` and
    // `body_graph` starting from the inputs, and store the final outputs in
    // `cond_output` and `body_outputs`.
    //
    // If `status` is OK, the caller must call either TF_FinishWhile or
    // TF_AbortWhile on the returned TF_WhileParams. If `status` isn't OK, the
    // returned TF_WhileParams is not valid, and the caller should not call
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top