Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for Mounts (0.11 sec)

  1. pkg/kubelet/pod_workers.go

    	// mark the pod as started
    	status.startedAt = p.clock.Now()
    	status.mergeLastUpdate(update.Options)
    
    	// If we are admitting the pod and it is new, record the count of containers
    	// TODO: We should probably move this into syncPod and add an execution count
    	// to the syncPod arguments, and this should be recorded on the first sync.
    	// Leaving it here complicates a particularly important loop.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	tg.setenv("GOPATH", tg.path("."))
    	tg.run("install", "-x", "a")
    	tg.run("install", "-x", "a")
    	// The second install should have printed only a WORK= line,
    	// nothing else.
    	if bytes.Count(tg.stdout.Bytes(), []byte{'\n'})+bytes.Count(tg.stderr.Bytes(), []byte{'\n'}) > 1 {
    		t.Error("unnecessary output when installing installed package")
    	}
    }
    
    // Issue 24704.
    func TestLinkerTmpDirIsDeleted(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	}
    
    	if sysStat != &memstats.other_sys {
    		sysStat.add(int64(size))
    		memstats.other_sys.add(-int64(size))
    	}
    	return p
    }
    
    // inPersistentAlloc reports whether p points to memory allocated by
    // persistentalloc. This must be nosplit because it is called by the
    // cgo checker code, which is called by the write barrier code.
    //
    //go:nosplit
    func inPersistentAlloc(p uintptr) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	PublicKey          any
    
    	Version             int
    	SerialNumber        *big.Int
    	Issuer              pkix.Name
    	Subject             pkix.Name
    	NotBefore, NotAfter time.Time // Validity bounds.
    	KeyUsage            KeyUsage
    
    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    	// and Windows stops the stack unwinding without calling the exception handler
    	// when it reaches that point.
    	MOVQ	BX, CX		// CX = first argument in Win64
    	CALL	AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    	} else if st.str[0] == 'f' && len(st.str) > 2 && st.str[1] == 'L' && isDigit(st.str[2]) {
    		st.advance(2)
    		// We don't include the scope count in the demangled string.
    		st.number()
    		if len(st.str) == 0 || st.str[0] != 'p' {
    			st.fail("expected p after function parameter scope count")
    		}
    		st.advance(1)
    		// We can see qualifiers here, but we don't include them
    		// in the demangled string.
    		st.cvQualifiers()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	wantm := make(map[string]int)
    	for k, w := range want {
    		wantm[w] = k
    	}
    	count := 0
    	for _, s := range undefs {
    		if _, ok := seen[s]; ok {
    			continue
    		}
    		seen[s] = struct{}{}
    		if k, ok := wantm[ctxt.loader.SymName(s)]; ok {
    			rval[k] = true
    			count++
    			if count == len(want) {
    				return rval
    			}
    		}
    	}
    	return rval
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    	maxTrampSize := int64(callCount * callTrampSize)
    
    	// Compute instruction addresses.  Once we do that, we need to check for
    	// overextended jumps and branches.  Within each iteration, Pc differences
    	// are always lower bounds (since the program gets monotonically longer,
    	// a fixed point will be reached).  No attempt to handle functions > 2GiB.
    	for {
    		big, rescan := false, false
    		maxPC := setPCs(cursym.Func().Text, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top