Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 234 for HUB (0.03 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go

    		objectConverter: objectConverter,
    		objectDefaulter: objectDefaulter,
    		groupVersion:    gv,
    		hubVersion:      hub,
    		updater: merge.Updater{
    			Converter:     newVersionConverter(typeConverter, objectConverter, hub), // This is the converter provided to SMD from k8s
    			IgnoredFields: resetFields,
    		},
    	}, nil
    }
    
    // NewCRDStructuredMergeManager creates a new Manager specifically for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

    import org.gradle.internal.remote.internal.RecoverableMessageIOException;
    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.internal.remote.internal.hub.protocol.*;
    import org.gradle.internal.remote.internal.hub.queue.EndPointQueue;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/InterHubMessageSerializerTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub
    
    import org.gradle.internal.remote.internal.hub.protocol.ChannelIdentifier
    import org.gradle.internal.remote.internal.hub.protocol.ChannelMessage
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage
    import org.gradle.internal.serialize.DefaultSerializer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. operator/pkg/validate/validate_test.go

    		{
    			desc: "CommonConfig",
    			yamlStr: `
    hub: docker.io/istio
    tag: v1.2.3
    meshConfig:
      rootNamespace: istio-system
    values:
      global:
        proxy:
          includeIPRanges: "1.1.0.0/16,2.2.0.0/16"
          excludeIPRanges: "3.3.0.0/16,4.4.0.0/16"
    
    `,
    		},
    		{
    			desc: "BadTag",
    			yamlStr: `
    hub: ?illegal-tag!
    `,
    			wantErrs: makeErrors([]string{`invalid value Hub: ?illegal-tag!`}),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/QueueInitializerTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub.queue
    
    import org.gradle.internal.dispatch.Dispatch
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage
    
    class QueueInitializerTest extends AbstractQueueTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. tools/gen_istio_image_list.sh

            
            HUB=$(grep -E 'hub: |repository: ' temp.file | awk '{print $2 $4}')
            IMAGE=$(grep "image: " temp.file | awk '{print $2 $4}')
            TAG=$(grep "tag: " temp.file | awk '{print $2 $4}')
    
            hubs=()
            images=()
            tags=()
    
            for hub in ${HUB}; do
              hubs+=( "$hub" );
            done
    
            for img in ${IMAGE}; do
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. samples/builder/README.md

    ## Building for testing
    
    To build all images and push them:
    
    ```bash
    docker buildx bake --push
    ```
    
    This will push to `localhost:5000` by default, which you can override with `HUB=localhost:5000`.
    It will also build `linux/amd64,linux/arm64` which you can override with `PLATFORMS`.
    
    You can also build a set of images instead of all of them:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  8. pkg/version/version.go

    type ProxyInfo struct {
    	ID           string
    	IstioVersion string
    	Type         NodeType
    }
    
    // DockerBuildInfo contains and exposes Hub: buildHub, Tag: buildVersion, OS: buildOS, and Arch: buildArch
    type DockerBuildInfo struct {
    	Hub  string
    	Tag  string
    	OS   string
    	Arch string
    }
    
    // NewBuildInfoFromOldString creates a BuildInfo struct based on the output
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. samples/wasm_modules/header_injector/Makefile

    .PHONY: docker-push docker-build build clean
    
    VERSION_LIST := 1 2
    HUB ?= gcr.io/istio-testing
    IMAGE_PREFIX ?= /wasm
    IMG := $(HUB)$(IMAGE_PREFIX)/header-injector
    
    all: docker-push
    
    build: plugin.cc plugin.h BUILD WORKSPACE
    	rm -f *.wasm
    	$(foreach VERSION, $(VERSION_LIST), bazel build :plugin-0.0.$(VERSION).wasm && cp bazel-bin/plugin-0.0.$(VERSION).wasm .;)
    
    docker-build: build
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 656 bytes
    - Viewed (0)
  10. pkg/test/env/istio.go

    	LOCAL_OUT Variable = "LOCAL_OUT"
    
    	// REPO_ROOT environment variable
    	// nolint: revive, stylecheck
    	REPO_ROOT Variable = "REPO_ROOT"
    
    	// HUB is the Docker hub to be used for images.
    	// nolint: revive, stylecheck
    	HUB Variable = "HUB"
    
    	// TAG is the Docker tag to be used for images.
    	// nolint: revive, stylecheck
    	TAG Variable = "TAG"
    
    	// VARIANT is the Docker variant to be used for images.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top