Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for palmer (0.23 sec)

  1. 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)
  2. 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)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// Returns pointer to an array of available configuration options and their
      /// current/default values in `options` and number of options in array in
      /// `num_options`. Ownership of the array is transferred to caller and the
      /// caller is responsible of freeing the buffers using respective file systems
      /// allocation API.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if `options` and `num_options` set.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/modload/load.go

    	pkgInAll loadPkgFlags = 1 << iota
    
    	// pkgIsRoot indicates that the package matches one of the root package
    	// patterns requested by the caller.
    	//
    	// If LoadTests is set, then when pkgIsRoot and pkgImportsLoaded are both set,
    	// the caller who set the last of those flags must populate a test for the
    	// package (in the pkg.test field).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top