Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 263 for fetches (0.21 sec)

  1. cluster/gce/gci/configure-helper.sh

      curl_cmd+=("${EXTRA_ADDONS_URL}")
    
      "${curl_cmd[@]}"
    }
    
    # A function that fetches a GCE metadata value and echoes it out.
    # Args:
    #   $1 : URL path after /computeMetadata/v1/ (without heading slash).
    #   $2 : An optional default value to echo out if the fetch fails.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/pprof/pprof.go

    	options := &driver.Options{
    		Fetch: new(fetcher),
    		Obj:   new(objTool),
    		UI:    newUI(),
    	}
    	err := driver.PProf(options)
    	telemetry.CountFlags("pprof/flag:", *flag.CommandLine) // pprof will use the flag package as its default
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "%v\n", err)
    		os.Exit(2)
    	}
    }
    
    type fetcher struct {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/internal/trace/generation.go

    	g := &generation{
    		evTable: &evTable{
    			pcs: make(map[uint64]frame),
    		},
    		batches: make(map[ThreadID][]batch),
    	}
    	// Process the spilled batch.
    	if spill != nil {
    		g.gen = spill.gen
    		if err := processBatch(g, *spill.batch); err != nil {
    			return nil, nil, err
    		}
    		spill = nil
    	}
    	// Read batches one at a time until we either hit EOF or
    	// the next generation.
    	var spillErr error
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    		rc.volumesNeedUpdateFromNodeStatus = nil
    		return
    	}
    
    	node, fetchErr := rc.kubeClient.CoreV1().Nodes().Get(context.TODO(), string(rc.nodeName), metav1.GetOptions{})
    	if fetchErr != nil {
    		// This may repeat few times per second until kubelet is able to read its own status for the first time.
    		klog.V(4).ErrorS(fetchErr, "Failed to get Node status to reconstruct device paths")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	Parse(usage func()) []string
    }
    
    // A Fetcher reads and returns the profile named by src. src can be a
    // local file path or a URL. duration and timeout are units specified
    // by the end user, or 0 by default. duration refers to the length of
    // the profile collection, if applicable, and timeout is the amount of
    // time to wait for a profile before returning an error. Returns the
    // fetched profile, the URL of the actual source of the profile, or an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/internal/trace/internal/oldtrace/parser.go

    			p.batchOffsets[raw.batchPid] = append(p.batchOffsets[raw.batchPid], bo)
    			curP = raw.batchPid
    		}
    
    		batches := p.batchOffsets[curP]
    		if len(batches) == 0 {
    			return fmt.Errorf("read event %d with current P of %d, but P has no batches yet",
    				raw.typ, curP)
    		}
    		batches[len(batches)-1].numEvents++
    
    		if raw.typ == EvCPUSample {
    			e := Event{Type: raw.typ}
    
    			argOffset := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. pkg/test/framework/components/prometheus/kube.go

    		// Find the Prometheus pod and service, and start forwarding a local port.
    		fetchFn := testKube.NewSinglePodFetch(cls, cfg.TelemetryNamespace, fmt.Sprintf("app.kubernetes.io/name=%s", appName))
    		pods, err := testKube.WaitUntilPodsAreReady(fetchFn)
    		if err != nil {
    			return nil, err
    		}
    		pod := pods[0]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/FailOnVersionConflictGraphVisitor.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.DependencyGraphVisitor;
    
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * A visitor which batches up all conflicts and reports them all at once at the end of
     * the resolution.
     */
    public class FailOnVersionConflictGraphVisitor implements DependencyGraphVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/runtime/traceexp.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    // traceExpWriter is a wrapper around trace writer that produces traceEvExperimentalBatch
    // batches. This means that the data written to the writer need not conform to the standard
    // trace format.
    type traceExpWriter struct {
    	traceWriter
    	exp traceExperiment
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pkg/kubelet/configmap/configmap_manager.go

    //   - whenever a pod is create or updated, the cached versions of all configmaps
    //     are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    //     value in cache; otherwise it is just fetched from cache
    func NewCachingConfigMapManager(kubeClient clientset.Interface, getTTL manager.GetObjectTTLFunc) Manager {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top