Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for Mounts (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if len(items) != 0 {
    		t.Errorf("unexpected items: %#v", items)
    	}
    }
    
    // testListTableConversion verifies a set of known bounds and expected limitations for the values
    // returned from a TableList. These conditions may be changed if necessary with adequate review.
    func (t *Tester) testListTableConversion(obj runtime.Object, assignFn AssignFunc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    		if err != brokenConnErr {
    			t.Errorf("#%d: expected error from brokenConn but got %q", breakAfter, err)
    		}
    		brokenC.Close()
    
    		<-done
    	}
    }
    
    // writeCountingConn wraps a net.Conn and counts the number of Write calls.
    type writeCountingConn struct {
    	net.Conn
    
    	// numWrites is the number of writes that have been done.
    	numWrites int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    	}
    
    	var terminating int32 = 0
    	if onlyReplaceFailedPods(jobCtx.job) {
    		// For PodFailurePolicy specified but PodReplacementPolicy disabled
    		// we still need to count terminating pods for replica counts
    		// But we will not allow updates to status.
    		if jobCtx.terminating == nil {
    			terminating = controller.CountTerminatingPods(jobCtx.pods)
    		} else {
    			terminating = *jobCtx.terminating
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top