Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for byName (0.14 sec)

  1. istioctl/pkg/wait/wait_test.go

    			args:             strings.Split("--timeout 20ms virtual-service bar.default", " "),
    			wantException:    true,
    			expectedOutput:   "Error: timeout expired before resource networking.istio.io/v1alpha3/VirtualService/default/bar became effective on all sidecars\n",
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--timeout 2s virtualservice foo.default", " "),
    			wantException:    false,
    		},
    		{
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 6.8K bytes
    - Viewed (1)
  2. istioctl/pkg/wait/wait.go

    				case <-ctx.Done():
    					printVerbosef(cmd, "timeout")
    					// I think this means the timeout has happened:
    					t.Stop()
    					errTmpl := "timeout expired before resource %s became effective on %s"
    					var errMsg string
    					if proxyFlag != "" {
    						errMsg = fmt.Sprintf(errTmpl, targetResource, proxyFlag)
    					} else {
    						errMsg = fmt.Sprintf(errTmpl, targetResource, "all sidecars")
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Feb 17 12:24:17 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  3. internal/config/config.go

    			// reset the region via the new command.
    			err = Errorf("could not load region from legacy configuration as it was invalid - use 'mc admin config set myminio site region=myregion name=myname' to set a region and name (%v)", err)
    			return
    		}
    
    		region = regionKV.Get(RegionName)
    	}
    	if region != "" {
    		if !validRegionRegex.MatchString(region) {
    			err = Errorf(
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top