Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for palmer (0.18 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/mheap.go

    	// such that the lowest bit corresponds to the bit freeindex.
    	// allocCache holds the complement of allocBits, thus allowing
    	// ctz (count trailing zero) to use it directly.
    	// allocCache may contain bits beyond s.nelems; the caller must ignore
    	// these.
    	allocCache uint64
    
    	// allocBits and gcmarkBits hold pointers to a span's mark and
    	// allocation bits. The pointers are 8 byte aligned.
    	// There are three arenas where this data is held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    // Assumes that c.Lock is held by caller.
    func (c *iamCache) buildUserGroupMemberships() {
    	for group, gi := range c.iamGroupsMap {
    		c.updateGroupMembershipsMap(group, &gi)
    	}
    }
    
    // updateGroupMembershipsMap - updates the memberships map for a
    // group. IMPORTANT: Assumes c.Lock() is held by caller.
    func (c *iamCache) updateGroupMembershipsMap(group string, gi *GroupInfo) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	DefaultPodMaxBackoffDuration time.Duration = 10 * time.Second
    )
    
    // PreEnqueueCheck is a function type. It's used to build functions that
    // run against a Pod and the caller can choose to enqueue or skip the Pod
    // by the checking result.
    type PreEnqueueCheck func(pod *v1.Pod) bool
    
    // SchedulingQueue is an interface for a queue to store pods waiting to be scheduled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	}
    	return err
    }
    
    // errCallerOwnsConn is an internal sentinel error used when we hand
    // off a writable response.Body to the caller. We use this to prevent
    // closing a net.Conn that is now owned by the caller.
    var errCallerOwnsConn = errors.New("read loop ending; caller owns writable underlying conn")
    
    func (pc *persistConn) readLoop() {
    	closeErr := errReadLoopExiting // default value, if not changed below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top