Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 259 for nextch (0.08 sec)

  1. pkg/kubelet/stats/cri_stats_provider.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to list all container stats: %v", err)
    	}
    	allInfos, err := getCadvisorContainerInfo(p.cadvisor)
    	if err != nil {
    		return nil, fmt.Errorf("failed to fetch cadvisor stats: %v", err)
    	}
    	caInfos, allInfos := getCRICadvisorStats(allInfos)
    
    	// get network stats for containers.
    	// This is only used on Windows. For other platforms, (nil, nil) should be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    		import "hub.jazz.net/git/user/project/sub/directory"
    
    For code hosted on other servers, import paths may either be qualified
    with the version control type, or the go tool can dynamically fetch
    the import path over https/http and discover where the code resides
    from a <meta> tag in the HTML.
    
    To declare the code location, an import path of the form
    
    	repository.vcs/path
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	}
    	evers, err := module.EscapeVersion(strings.TrimSuffix(vers, "/go.mod"))
    	if err != nil {
    		return nil, err
    	}
    	remotePath := "/lookup/" + epath + "@" + evers
    	file := c.name + remotePath
    
    	// Fetch the data.
    	// The lookupCache avoids redundant ReadCache/GetURL operations
    	// (especially since go.sum lines tend to come in pairs for a given
    	// path and version) and also avoids having multiple of the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/cluster.go

    	printer.Printf("[%s] FYI: You can look at this config file with 'kubectl -n %s get cm %s -o yaml'\n", logPrefix, metav1.NamespaceSystem, constants.KubeadmConfigConfigMap)
    
    	// Fetch the actual config from cluster
    	cfg, err := getInitConfigurationFromCluster(constants.KubernetesDir, client, newControlPlane, skipComponentConfigs)
    	if err != nil {
    		return nil, err
    	}
    
    	// Apply dynamic defaults
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	pkg  *Package
    	*Info
    	version goVersion              // accepted language version
    	nextID  uint64                 // unique Id for type parameters (first valid Id is 1)
    	objMap  map[Object]*declInfo   // maps package-level objects and (non-interface) methods to declaration info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. tests/integration/security/sds_ingress/ingress_test.go

    						ingressutil.CreateIngressKubeSecret(t, credName, ingressutil.Mtls,
    							ingressutil.IngressCredentialA, false)
    
    						// Wait for ingress gateway to fetch key/cert from Gateway agent via SDS.
    						ing := inst.IngressFor(t.Clusters().Default())
    						tlsContext := ingressutil.TLSContext{
    							CaCert:     ingressutil.CaCertA,
    							PrivateKey: ingressutil.TLSClientKeyA,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download.txt

    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.mod
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.zip
    
    # download will fetch and unpack the zip file
    go mod download
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Start 50 parallel slow queries.
    	const (
    		nquery      = 50
    		sleepMillis = 25
    		nbatch      = 2
    	)
    	var wg sync.WaitGroup
    	for batch := 0; batch < nbatch; batch++ {
    		for i := 0; i < nquery; i++ {
    			wg.Add(1)
    			go func() {
    				defer wg.Done()
    				var op string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. cmd/metrics-resource.go

    		defer wg.Done()
    		for metric := range in {
    			labels, values := getOrderedLabelValueArrays(metric.VariableLabels)
    			collectMetric(metric, labels, values, "resource", out)
    		}
    	}
    
    	// Call peer api to fetch metrics
    	wg.Add(2)
    	go publish(ReportMetrics(GlobalContext, c.metricsGroups))
    	go publish(globalNotificationSys.GetResourceMetrics(GlobalContext))
    	wg.Wait()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/asm5.go

    // it threatens to go out of range of a 12-bit PC-relative offset.
    //
    // nextpc is the tentative next PC at which the pool could be emitted.
    // checkpool should be called *before* emitting the instruction that
    // would cause the PC to reach nextpc.
    // If nextpc is too far from the first pool reference, checkpool will
    // flush the pool immediately after p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top