Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for palmer (0.12 sec)

  1. src/internal/trace/order.go

    // If it's not valid to advance with ev, but no error was encountered, the caller
    // should attempt to advance with other candidate events from other threads. If the
    // caller runs out of candidates, the trace is invalid.
    //
    // If this returns true, Next is guaranteed to return a complete event. However,
    // multiple events may be added to the ordering, so the caller should (but is not
    // required to) continue to call Next until it is exhausted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// won't barge over new memory becoming available to scavenge. Furthermore, this ensures
    	// that some future caller of find *must* observe the new high index. That caller
    	// (or any other racing with it), then makes searchAddr positive before continuing, bringing
    	// us back to our monotonically decreasing steady-state.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    					found = true
    					break
    				}
    			}
    		}
    		if found {
    			offline++
    		}
    	}
    	if offline > 0 {
    		tags["offline"] = offline
    	}
    
    	_, file, line, cok := runtime.Caller(1)
    	if cok {
    		tags["caller"] = fmt.Sprintf("%s:%d", file, line)
    	}
    
    	defer auditDanglingObjectDeletion(ctx, bucket, object, m.VersionID, tags)
    
    	fi := FileInfo{
    		VersionID: m.VersionID,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    		opts.port, meshGateway, svcConfigs)...)
    	return out
    }
    
    // buildSidecarOutboundListener builds a single listener and
    // adds it to the listenerMap provided by the caller.  Listeners are added
    // if one doesn't already exist. HTTP listeners on same port are ignored
    // (as vhosts are shipped through RDS).  TCP listeners on same port are
    // allowed only if they have different CIDR matches.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		}
    		return gover.FromGoMod(f)
    	}
    	return gover.DefaultGoModVersion
    }
    
    // Godebugs returns the godebug lines set on the single module, in module mode,
    // or on the go.work file in workspace mode.
    // The caller must not modify the result.
    func (mms *MainModuleSet) Godebugs() []*modfile.Godebug {
    	if inWorkspaceMode() {
    		if mms.workFile != nil {
    			return mms.workFile.Godebug
    		}
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    func (s *xlStorage) ReadAll(ctx context.Context, volume string, path string) (buf []byte, err error) {
    	// Specific optimization to avoid re-read from the drives for `format.json`
    	// in-case the caller is a network operation.
    	if volume == minioMetaBucket && path == formatConfigFile {
    		s.RLock()
    		formatData := make([]byte, len(s.formatData))
    		copy(formatData, s.formatData)
    		s.RUnlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/testing/testing.go

    	if c.inFuzzFn {
    		panic(fmt.Sprintf("testing: f.%s was called inside the fuzz target, use t.%s instead", name, name))
    	}
    }
    
    // frameSkip searches, starting after skip frames, for the first caller frame
    // in a function not marked as a helper and returns that frame.
    // The search stops if it finds a tRunner function that
    // was the entry point into the test and the test is not a subtest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    			}
    		}
    		x.setConst(e.Kind, e.Value)
    		if x.mode == invalid {
    			// The parser already establishes syntactic correctness.
    			// If we reach here it's because of number under-/overflow.
    			// TODO(gri) setConst (and in turn the go/constant package)
    			// should return an error describing the issue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// LoweredGetCallerSP returns the SP of the caller of the current function. arg0=mem
    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},
    
    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2.go

    }
    
    // xlMetaV2Version describes the journal entry, Type defines
    // the current journal entry type other types might be nil based
    // on what Type field carries, it is imperative for the caller
    // to verify which journal type first before accessing rest of the fields.
    type xlMetaV2Version struct {
    	Type             VersionType           `json:"Type" msg:"Type"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top