Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RunCrane (0.26 sec)

  1. tools/docker-builder/crane.go

    // pushing all images drops to sub-second times, with the registry being the bottleneck (which could
    // also use sha256-simd possibly).
    func RunCrane(ctx context.Context, a Args) error {
    	ctx, span := tracing.Start(ctx, "RunCrane")
    	defer span.End()
    	g := errgroup.Group{}
    
    	variants := sets.New(a.Variants...)
    	// hasDoubleDefault checks if we defined both DefaultVariant and PrimaryVariant. If we did, these
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. tools/docker-builder/builder/crane.go

    	name string
    }
    
    var (
    	bases   = map[baseKey]v1.Image{}
    	basesMu sync.RWMutex
    )
    
    func WarmBase(ctx context.Context, architectures []string, baseImages ...string) {
    	_, span := tracing.Start(ctx, "RunCrane")
    	defer span.End()
    	basesMu.Lock()
    	wg := sync.WaitGroup{}
    	wg.Add(len(baseImages) * len(architectures))
    	resolvedBaseImages := make([]v1.Image, len(baseImages)*len(architectures))
    	keys := []baseKey{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top