Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 234 for HUB (0.02 sec)

  1. tests/integration/operator/uninstall_test.go

    				// Operator has no --variant flag, hack it with --tag
    				tag := s.Image.Tag
    				if v := s.Image.Variant; v != "" {
    					tag += "-" + v
    				}
    				initCmd := []string{
    					"operator", "init",
    					"--hub=" + s.Image.Hub,
    					"--tag=" + tag,
    					"--manifests=" + ManifestPath,
    				}
    				// install istio with default config for the first time by running operator init command
    				istioCtl.InvokeOrFail(t, initCmd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. samples/builder/docker-bake.hcl

    variable "HUB" {
      default = "localhost:5000"
    }
    
    variable "PLATFORMS" {
      default = "linux/amd64,linux/arm64"
    }
    
    images = [
      {
        name   = "tcp-echo-server"
        source = "../tcp-echo/src"
        tags   = ["1.3", "latest"]
      },
    
      {
        name   = "examples-helloworld-v1"
        source = "../helloworld/src"
        args   = {
          service_version = "v1"
        }
        tags = ["1.0", "latest"]
      },
      {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 845 bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueueTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub.queue
    
    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
    
    class MultiChannelQueueTest extends AbstractQueueTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

            0 * _._
        }
    
        private class Participant {
            MessageHub hub = new MessageHub("participant", executorFactory, getErrorHandler())
    
            Dispatch<String> createOutgoing(String channel) {
                return hub.getOutgoing(channel, String)
            }
    
            void addHandler(String channel, Dispatch<String> handler) {
                hub.addHandler(channel, handler)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/QueueInitializer.java

     * 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;
    
    public class QueueInitializer {
        private EndOfStream endOfStream;
    
    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. operator/pkg/helm/helm.go

    	return sb.String(), nil
    }
    
    // GenerateHubTagOverlay creates an IstioOperatorSpec overlay YAML for hub and tag.
    func GenerateHubTagOverlay(hub, tag string) (string, error) {
    	hubTagYAMLTemplate := `
    spec:
      hub: {{.Hub}}
      tag: {{.Tag}}
    `
    	ts := struct {
    		Hub string
    		Tag string
    	}{
    		Hub: hub,
    		Tag: tag,
    	}
    	return util.RenderTemplate(hubTagYAMLTemplate, ts)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/values.yaml

      revision: ""
    
      # For Helm compatibility.
      ownerName: ""
    
      global:
        # Default hub for Istio images.
        # Releases are published to docker hub under 'istio' project.
        # Dev builds from prow are on gcr.io
        hub: gcr.io/istio-testing
    
        # Default tag for Istio images.
        tag: latest
    
        # Variant of the image to use.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/IncomingQueue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub;
    
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.queue.MultiChannelQueue;
    
    import java.util.concurrent.locks.Lock;
    
    class IncomingQueue extends MultiChannelQueue {
        IncomingQueue(Lock lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/operator-init.go

    var kubeClients = KubernetesClients
    
    func addOperatorInitFlags(cmd *cobra.Command, args *operatorInitArgs) {
    	hub, tag := buildversion.DockerInfo.Hub, buildversion.DockerInfo.Tag
    
    	cmd.PersistentFlags().StringVarP(&args.inFilename, "filename", "f", "", filenameFlagHelpStr)
    	cmd.PersistentFlags().StringVar(&args.common.hub, "hub", hub, HubFlagHelpStr)
    	cmd.PersistentFlags().StringVar(&args.common.tag, "tag", tag, TagFlagHelpStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager.go

    	f, err := internal.NewStructuredMergeManager(typeConverter, objectConverter, objectDefaulter, kind.GroupVersion(), hub, resetFields)
    	if err != nil {
    		return nil, fmt.Errorf("failed to create field manager: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top