Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for Hubs (0.07 sec)

  1. tools/docker-builder/types.go

    	if legacy, f := os.LookupEnv("DOCKER_ARCHITECTURES"); f {
    		arch = strings.Split(legacy, ",")
    	}
    
    	hub := []string{env.Register("HUB", "localhost:5000", "").Get()}
    	if hubs, f := os.LookupEnv("HUBS"); f {
    		hub = strings.Split(hubs, " ")
    	}
    	tag := []string{env.Register("TAG", "latest", "").Get()}
    	if tags, f := os.LookupEnv("TAGS"); f {
    		tag = strings.Split(tags, " ")
    	}
    
    	builder := DockerBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. tools/build-base-images.sh

    if len(yml) == 1: yml = yml[0]
    json.dump(yml, sys.stdout, indent=4)
    '
    }
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    buildx-create
    
    HUBS="${HUBS:?specify a space separated list of hubs}"
    TAG="${TAG:?specify a tag}"
    defaultTargets="$(< "${ROOT}/tools/docker.yaml" toJson | toJson | jq '[.images[] | select(.base) | .name] | join(",")' -r)"
    DOCKER_TARGETS="${DOCKER_TARGETS:-${defaultTargets}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. tools/gen_istio_image_list.sh

            hubs=()
            images=()
            tags=()
    
            for hub in ${HUB}; do
              hubs+=( "$hub" );
            done
    
            for img in ${IMAGE}; do
              images+=( "$img" );
            done
    
            for tag in ${TAG}; do
              tags+=( "$tag" );
            done
    
            for i in "${!hubs[@]}"; do
              if [ -z "${images[$i]}" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. tools/docker-builder/common.go

    // limitations under the License.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func extractTags(a Args, target, variant string, hasDoubleDefault bool) []string {
    	tags := []string{}
    	for _, h := range a.Hubs {
    		for _, tg := range a.Tags {
    			if variant == DefaultVariant {
    				// For default, we have no suffix
    				tags = append(tags, fmt.Sprintf("%s/%s:%s%s", h, target, tg, a.suffix))
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    	testenv "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/tracing"
    	"istio.io/istio/pkg/util/sets"
    	pkgversion "istio.io/istio/pkg/version"
    )
    
    func main() {
    	rootCmd.Flags().StringSliceVar(&globalArgs.Hubs, "hub", globalArgs.Hubs, "docker hub(s)")
    	rootCmd.Flags().StringSliceVar(&globalArgs.Tags, "tag", globalArgs.Tags, "docker tag(s)")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

    import java.util.concurrent.LinkedBlockingQueue
    
    @Timeout(60)
    class MessageHubIntegrationTest extends ConcurrentSpec {
        final Action<Throwable> errorHandler = Mock()
    
        def "can wire two hubs together"() {
            Dispatch<String> clientHandler = Mock()
            Dispatch<String> serverHandler = Mock()
            def server = new Participant()
            def client = new Participant()
            client.connectTo(server)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. Makefile.core.mk

    $(TARGET_OUT):
    	@mkdir -p $@
    
    # If the hub is not explicitly set, use default to istio.
    HUB ?=istio
    ifeq ($(HUB),)
      $(error "HUB cannot be empty")
    endif
    
    # For dockerx builds, allow HUBS which is a space separated list of hubs. Default to HUB.
    HUBS ?= $(HUB)
    
    # If tag not explicitly set in users' .istiorc.mk or command line, default to the git sha.
    TAG ?= $(shell git rev-parse --verify HEAD)
    ifeq ($(TAG),)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. internal/pubsub/pubsub.go

    			if wg != nil {
    				wg.Done()
    			}
    			// Clean up and de-register the subscriber
    			ps.Lock()
    			defer ps.Unlock()
    			var remainTypes Mask
    			for i, s := range ps.subs {
    				if s == sub {
    					ps.subs = append(ps.subs[:i], ps.subs[i+1:]...)
    				} else {
    					remainTypes.Merge(s.types)
    				}
    			}
    			atomic.StoreUint64(&ps.types, uint64(remainTypes))
    			atomic.AddInt32(&ps.numSubscribers, -1)
    		}()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 16:57:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/runtime/netpoll_wasip1.go

    	eventtype := s.u.eventtype()
    	switch mode {
    	case 'r':
    		*eventtype = eventtypeFdRead
    		ridx = len(subs)
    	case 'w':
    		*eventtype = eventtypeFdWrite
    		widx = len(subs)
    	}
    
    	if len(subs) == disarmed {
    		throw("overflow")
    	}
    
    	pd.user = uint32(ridx)<<16 | uint32(widx)
    
    	subs = append(subs, s)
    	evts = append(evts, event{})
    
    	unlock(&mtx)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/version.go

    	var bucketURL, urlSuffix string
    	subs := kubeBucketPrefixes.FindAllStringSubmatch(version, 1)
    	if len(subs) != 1 || len(subs[0]) != 4 {
    		return "", "", errors.Errorf("invalid version %q", version)
    	}
    
    	switch {
    	case strings.HasPrefix(subs[0][2], "ci"):
    		// Just use whichever the user specified
    		urlSuffix = subs[0][2]
    		bucketURL = kubeCIBucketURL
    	default:
    		urlSuffix = "release"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top