Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 244 for hcub (0.09 sec)

  1. src/cmd/go/internal/vcs/vcs_test.go

    			nil,
    		},
    		// IBM DevOps Services tests
    		{
    			"hub.jazz.net/git/user1/pkgname",
    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://hub.jazz.net/git/user1/pkgname",
    			},
    		},
    		{
    			"hub.jazz.net/git/user1/pkgname/submodule/submodule/submodule",
    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://hub.jazz.net/git/user1/pkgname",
    			},
    		},
    		{
    			"hub.jazz.net",
    			nil,
    		},
    		{
    			"hubajazz.net",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    ":false}}},"tracing":{"enabled":false,"ingress":{"enabled":false},"jaeger":{"accessMode":"ReadWriteMany","enabled":false,"hub":"docker.io/jaegertracing","memory":{"max_traces":50000},"namespace":"istio-system","persist":false,"spanStorageType":"badger","storageClassName":"","tag":"1.20"},"nodeSelector":{},"opencensus":{"exporters":{"stackdriver":{"enable_tracing":true}},"hub":"docker.io/omnition","resources":{"limits":{"cpu":"1","memory":"2Gi"},"requests":{"cpu":"200m","memory":"400Mi"}},"tag":"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubBackedObjectConnectionTest.groovy

     */
    
    package org.gradle.internal.remote.internal.hub
    
    import org.gradle.api.GradleException
    import org.gradle.internal.dispatch.MethodInvocation
    import org.gradle.internal.dispatch.StreamCompletion
    import org.gradle.internal.remote.internal.ConnectCompletion
    import org.gradle.internal.remote.internal.TestConnection
    import org.gradle.internal.remote.internal.hub.protocol.ChannelIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pkg/test/framework/resource/flags.go

    	flag.StringVar(&settingsFromCommandLine.Image.Hub, "istio.test.hub", settingsFromCommandLine.Image.Hub,
    		"Container registry hub to use")
    	flag.StringVar(&settingsFromCommandLine.Image.Tag, "istio.test.tag", settingsFromCommandLine.Image.Tag,
    		"Common Container tag to use when deploying container images")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/README.md

    ## Adding a new version
    
    1. Generate a revisioned IstioOperator for the version with equivalent settings:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
      revision: 1-x-y
      components:
        base:
          enabled: false
        pilot:
          enabled: true
        ingressGateways:
          - name: istio-ingressgateway
            enabled: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/text/template/parse/lex_test.go

    func TestDelimsAlphaNumeric(t *testing.T) {
    	test := lexTest{"right delimiter with alphanumeric start", "{{hub .host hub}}", []item{
    		mkItem(itemLeftDelim, "{{hub"),
    		mkItem(itemSpace, " "),
    		mkItem(itemField, ".host"),
    		mkItem(itemSpace, " "),
    		mkItem(itemRightDelim, "hub}}"),
    		tEOF,
    	}}
    	items := collect(&test, "{{hub", "hub}}")
    
    	if !equal(items, test.items, false) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/MultiEndPointQueue.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;
    
    import java.util.ArrayDeque;
    import java.util.ArrayList;
    import java.util.Collection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/services/MessagingServices.java

    import org.gradle.internal.remote.internal.IncomingConnector;
    import org.gradle.internal.remote.internal.OutgoingConnector;
    import org.gradle.internal.remote.internal.hub.MessageHubBackedClient;
    import org.gradle.internal.remote.internal.hub.MessageHubBackedServer;
    import org.gradle.internal.remote.internal.inet.InetAddressFactory;
    import org.gradle.internal.remote.internal.inet.TcpIncomingConnector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. Makefile.core.mk

    # Need separate target for init:
    $(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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    			expectedConvertedObject: &testapigroupv1.Carp{
    				TypeMeta: metav1.TypeMeta{
    					APIVersion: "v1",
    					Kind:       "Carp",
    				},
    			},
    		},
    		{
    			name: "convert hub-versioned unstructured to hub version should work",
    			unstructuredToConvert: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    					"apiVersion": "__internal",
    					"kind":       "Carp",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
Back to top