Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Reports (0.11 sec)

  1. cmd/metrics-v2.go

    	}
    }
    
    func getClusterRepLinkOnlineMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: replicationSubsystem,
    		Name:      linkOnline,
    		Help:      "Reports whether replication link is online (1) or offline(0)",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterRepLinkCurrOfflineDurationMD() MetricDescription {
    	return MetricDescription{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    //	    // Dependency information
    //	    Imports      []string          // import paths used by this package
    //	    ImportMap    map[string]string // map from source import to ImportPath (identity entries omitted)
    //	    Deps         []string          // all (recursively) imported dependencies
    //	    TestImports  []string          // imports from TestGoFiles
    //	    XTestImports []string          // imports from XTestGoFiles
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. cluster/gce/util.sh

        create-linux-node-instance-template "$linux_extra_template_name" "${ADDITIONAL_MACHINE_TYPE}"
      fi
    }
    
    # Assumes:
    # - MAX_INSTANCES_PER_MIG
    # - NUM_NODES
    # - NUM_WINDOWS_NODES
    # exports:
    # - NUM_MIGS
    # - NUM_WINDOWS_MIGS
    function set_num_migs() {
      local defaulted_max_instances_per_mig=${MAX_INSTANCES_PER_MIG:-1000}
    
      if [[ ${defaulted_max_instances_per_mig} -le "0" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    			for _, port := range serviceEntry.Ports {
    				if port == nil {
    					errs = AppendValidation(errs, errors.New("ports cannot be nil"))
    					continue
    				}
    				p := protocol.Parse(port.Protocol)
    				if !p.IsHTTP() && !p.IsTLS() {
    					errs = AppendValidation(errs, fmt.Errorf("multiple hosts provided with non-HTTP, non-TLS ports"))
    					break
    				}
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. go.sum

    github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
    github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
    github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
    github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top