Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for Reports (0.27 sec)

  1. cmd/admin-handlers.go

    // The health report data can contain the hostname in various forms e.g. host, host:port,
    // host:port/drivepath, full url (http://host:port/drivepath)
    // The anonymizer map will have mappings for all these variants for efficiently replacing
    // any of these strings to the anonymized versions at the time of health report generation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			failed := int32(len(failedPods)) + tc.job.Status.Failed + int32(len(uncounted.failed))
    			if succeeded != tc.wantSucceeded {
    				t.Errorf("getStatus reports %d succeeded pods, want %d", succeeded, tc.wantSucceeded)
    			}
    			if failed != tc.wantFailed {
    				t.Errorf("getStatus reports %d succeeded pods, want %d", failed, tc.wantFailed)
    			}
    		})
    	}
    }
    
    func TestTrackJobStatusAndRemoveFinalizers(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			vcfg.ModuleVersion = a.Package.Module.Version
    		}
    	}
    	a.vetCfg = vcfg
    	for i, raw := range a.Package.Internal.RawImports {
    		final := a.Package.Imports[i]
    		vcfg.ImportMap[raw] = final
    	}
    
    	// Compute the list of mapped imports in the vet config
    	// so that we can add any missing mappings below.
    	vcfgMapped := make(map[string]bool)
    	for _, p := range vcfg.ImportMap {
    		vcfgMapped[p] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		at.Element.goString(indent+2, "Element: "))
    }
    
    // FunctionType is a function type.
    type FunctionType struct {
    	Return AST
    	Args   []AST
    
    	// The forLocalName field reports whether this FunctionType
    	// was created for a local name. With the default GNU demangling
    	// output we don't print the return type in that case.
    	ForLocalName bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	kl := testKubelet.kubelet
    	pods := []*v1.Pod{
    		{ObjectMeta: metav1.ObjectMeta{Name: "pod1", UID: "1234"}, Spec: v1.PodSpec{Containers: []v1.Container{{Ports: []v1.ContainerPort{{HostPort: 80}}}}}},
    		{ObjectMeta: metav1.ObjectMeta{Name: "pod2", UID: "4567"}, Spec: v1.PodSpec{Containers: []v1.Container{{Ports: []v1.ContainerPort{{HostPort: 80}}}}}},
    	}
    	podToTest := pods[1]
    	// Run once to populate the status map.
    	kl.HandlePodAdditions(pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": {
            "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.",
            "properties": {
              "apiServerID": {
                "description": "The ID of the reporting API server.",
                "type": "string"
              },
              "decodableVersions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    // The actual limit is ±2²⁰, but we are conservative
    // to avoid needing to recompute the literal pool flush points
    // as span-dependent jumps are enlarged.
    const maxPCDisp = 512 * 1024
    
    // ispcdisp reports whether v is a valid PC-relative displacement.
    func ispcdisp(v int32) bool {
    	return -maxPCDisp < v && v < maxPCDisp && v&3 == 0
    }
    
    func isaddcon(v int64) bool {
    	/* uimm12 or uimm24? */
    	if v < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    }
    
    func allCerts(t *testing.T, p *CertPool) []*Certificate {
    	all := make([]*Certificate, p.len())
    	for i := range all {
    		all[i] = p.mustCert(t, i)
    	}
    	return all
    }
    
    // certPoolEqual reports whether a and b are equal, except for the
    // function pointers.
    func certPoolEqual(a, b *CertPool) bool {
    	if (a != nil) != (b != nil) {
    		return false
    	}
    	if a == nil {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	"compress/zlib"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"internal/abi"
    	"log"
    	"math/rand"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    )
    
    // isRuntimeDepPkg reports whether pkg is the runtime package or its dependency.
    func isRuntimeDepPkg(pkg string) bool {
    	switch pkg {
    	case "runtime",
    		"sync/atomic",          // runtime may call to sync/atomic, due to go:linkname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	apiPodStatus := kl.generateAPIPodStatus(pod, podStatus, true)
    
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    	// volumes are unmounted after the pod worker reports ShouldPodRuntimeBeRemoved (which is satisfied
    	// before syncTerminatedPod is invoked)
    	if err := kl.volumeManager.WaitForUnmount(ctx, pod); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top