Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 234 for HUB (0.02 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubTest.groovy

            hub.getOutgoing("channel", String)
    
            when:
            hub.requestStop()
            hub.getOutgoing("channel", String)
    
            then:
            IllegalStateException e = thrown()
            e.message == 'Cannot create outgoing dispatch, as <hub> has been stopped.'
        }
    
        def "cannot add handler after stop started"() {
            when:
            hub.requestStop()
            hub.addHandler("channel", new Object())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/OutgoingQueue.java

     */
    
    package org.gradle.internal.remote.internal.hub;
    
    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.queue.MultiEndPointQueue;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    import org.gradle.internal.remote.internal.hub.protocol.RejectedMessage;
    
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate_value_test.go

      autoscaleMin: 1
      cpu:
        targetAverageUtilization: 80
      traceSampling: 1.0
      image: pilot
      env:
        GODEBUG: gctrace=1
    global:
      hub: docker.io/istio
      istioNamespace: istio-system
      tag: 1.2.3
      proxy:
        readinessInitialDelaySeconds: 2
    `,
    			want: `
    hub: docker.io/istio
    tag: 1.2.3
    components:
       pilot:
         enabled: true
         k8s:
           replicaCount: 1
           env:
           - name: GODEBUG
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueue.java

     * 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.InterHubMessage;
    import org.gradle.internal.remote.internal.hub.protocol.Routable;
    
    import java.util.HashMap;
    import java.util.Map;
    import java.util.concurrent.locks.Lock;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/input/component_hub_tag.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: istio-spec.hub
      tag: istio-spec.tag
      components:
        pilot:
          enabled: true
          hub: component.pilot.hub
          tag: 2
        cni:
          enabled: true
          hub: component.cni.hub
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 06:46:00 UTC 2020
    - 274 bytes
    - Viewed (0)
  6. manifests/charts/ztunnel/values.yaml

    defaults:
      # Hub to pull from. Image will be `Hub/Image:Tag-Variant`
      hub: gcr.io/istio-testing
      # Tag to pull from. Image will be `Hub/Image:Tag-Variant`
      tag: latest
      # Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      variant: ""
    
      # Image name to pull from. Image will be `Hub/Image:Tag-Variant`
      # If Image contains a "/", it will replace the entire `image` in the pod.
      image: ztunnel
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tests/integration/security/fuzz/fuzzers/jwt_tool/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    HUB ?= "gcr.io/istio-testing/jwttool"
    TAG ?= "0.1"
    
    push: Dockerfile
    	docker build . -t $(HUB):$(TAG)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 701 bytes
    - Viewed (0)
  8. operator/cmd/mesh/operator-common.go

    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/util"
    )
    
    type operatorCommonArgs struct {
    	// hub is the hub for the operator image.
    	hub string
    	// tag is the tag for the operator image.
    	tag string
    	// imagePullSecrets is an array of imagePullSecret to pull operator image from the private registry
    	imagePullSecrets []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 17 02:25:04 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/operator-dump.go

    	// common is shared operator args
    	common operatorCommonArgs
    }
    
    func addOperatorDumpFlags(cmd *cobra.Command, args *operatorDumpArgs) {
    	hub, tag := buildversion.DockerInfo.Hub, buildversion.DockerInfo.Tag
    
    	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: Tue May 23 17:08:31 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/ConnectionSet.java

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub;
    
    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    import org.gradle.internal.remote.internal.hub.queue.EndPointQueue;
    
    import java.util.HashSet;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top