Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for COMMENT (0.29 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	//	we can only assume their restart count is 0.
    	// Anyhow, we only promised "best-effort" restart count reporting, we can just ignore
    	// these limitations now.
    	// TODO: move this comment to SyncPod.
    	podSandboxIDs, err := m.getSandboxIDByPodUID(ctx, uid, nil)
    	if err != nil {
    		return nil, err
    	}
    
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Check if modules in altMods were downgraded but not removed.
    	// If so, add them to roots, which will retain an "// indirect" requirement
    	// in go.mod. See comment on altMods above.
    	keptAltMod := false
    	for _, m := range buildList {
    		if v, ok := altMods[m.Path]; ok && gover.ModCompare(m.Path, m.Version, v) < 0 {
    			keep = append(keep, module.Version{Path: m.Path, Version: v})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    	}
    	// This goroutine is exiting itself.
    	delete(o.gStates, curCtx.G)
    	newCtx := curCtx
    	newCtx.G = NoGoroutine
    
    	// If we have a proc, then we're dissociating from it now. See the comment at the top of the case.
    	if curCtx.P != NoProc {
    		pState, ok := o.pStates[curCtx.P]
    		if !ok {
    			return curCtx, false, fmt.Errorf("found invalid proc %d during %s", curCtx.P, go122.EventString(ev.typ))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		shstrtabAddstring(".note.gnu.build-id")
    	}
    	if *flagBuildid != "" {
    		shstrtabAddstring(".note.go.buildid")
    	}
    	shstrtabAddstring(".elfdata")
    	shstrtabAddstring(".rodata")
    	// See the comment about data.rel.ro.FOO section names in data.go.
    	relro_prefix := ""
    	if ctxt.UseRelro() {
    		shstrtabAddstring(".data.rel.ro")
    		relro_prefix = ".data.rel.ro"
    	}
    	shstrtabAddstring(relro_prefix + ".typelink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    	}
    	return re
    }
    
    // Parsing.
    
    // Parse parses a regular expression string s, controlled by the specified
    // Flags, and returns a regular expression parse tree. The syntax is
    // described in the top-level comment.
    func Parse(s string, flags Flags) (*Regexp, error) {
    	return parse(s, flags)
    }
    
    func parse(s string, flags Flags) (_ *Regexp, err error) {
    	defer func() {
    		switch r := recover(); r {
    		default:
    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. CHANGELOG/CHANGELOG-1.31.md

    - Fix Deep Copy issue in getting controller reference ([#124116](https://github.com/kubernetes/kubernetes/pull/124116), [@HiranmoyChowdhury](https://github.com/HiranmoyChowdhury)) [SIG API Machinery and Release]
    - Fix the comment for the Job's managedBy field ([#124793](https://github.com/kubernetes/kubernetes/pull/124793), [@mimowo](https://github.com/mimowo)) [SIG API Machinery and Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    //
    // This is used for special cases where e.g. dst was just
    // created and zeroed with malloc.
    //
    // The type of the space can be provided purely as an optimization.
    // See bulkBarrierPreWrite's comment for more details -- use this
    // optimization with great care.
    //
    //go:nosplit
    func bulkBarrierPreWriteSrcOnly(dst, src, size uintptr, typ *abi.Type) {
    	if (dst|src|size)&(goarch.PtrSize-1) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users.go

    	targetUser := createReq.TargetUser
    	if targetUser == "" {
    		targetUser = cred.AccessKey
    	}
    
    	description := createReq.Description
    	if description == "" {
    		description = createReq.Comment
    	}
    	opts := newServiceAccountOpts{
    		accessKey:   createReq.AccessKey,
    		secretKey:   createReq.SecretKey,
    		name:        createReq.Name,
    		description: description,
    		expiration:  createReq.Expiration,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	"errors"
    	"fmt"
    	"internal/byteorder"
    	"io"
    	"math/big"
    	"net"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // opensslInputEvent enumerates possible inputs that can be sent to an `openssl
    // s_client` process.
    type opensslInputEvent int
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    }
    
    // NewBuilder creates a new builder with compression disabled.
    //
    // Note: Most users will want to immediately enable compression with the
    // EnableCompression method. See that method's comment for why you may or may
    // not want to enable compression.
    //
    // The DNS message is appended to the provided initial buffer buf (which may be
    // nil) as it is built. The final message is returned by the (*Builder).Finish
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top