Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for palmer (0.26 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/link/internal/ppc64/asm.go

    	stubType := 0
    	stubTypeStr := ""
    
    	// For now, the choice of call stub type is determined by whether
    	// the caller maintains a TOC pointer in R2. A TOC pointer implies
    	// we can always generate a position independent stub.
    	//
    	// For dynamic calls made from an external object, a caller maintains
    	// a TOC pointer only when an R_PPC64_REL24 relocation is used.
    	// An R_PPC64_REL24_NOTOC relocation does not use or maintain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

        Path             C:\var\log\containers\*.log
        DB               /var/run/google-fluentbit/pos-files/flb_kube.db
    
    [FILTER]
        Name         parser
        Match        kube_*
        Key_Name     log
        Reserve_Data True
        Parser       docker
        Parser       containerd
    
    # Log line format: [IWEF]mmdd hh:mm:ss.uuuuuu threadid file:line] msg
    # Example:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    //
    // Buf is where the traceback information should be stored. It should
    // be PC values, such that Buf[0] is the PC of the caller, Buf[1] is
    // the PC of that function's caller, and so on.  Max is the maximum
    // number of entries to store.  The function should store a zero to
    // indicate the top of the stack, or that the caller is on a different
    // stack, presumably a Go stack.
    //
    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/cmd/go/internal/modload/buildlist.go

    // Graph method.
    //
    // The rootModules slice must be sorted according to gover.ModSort.
    // The caller must not modify the rootModules slice or direct map after passing
    // them to newRequirements.
    //
    // If vendoring is in effect, the caller must invoke initVendor on the returned
    // *Requirements before any other method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top