Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 465 for SUCCEED (0.12 sec)

  1. hack/testdata/multi-resource-4.yaml

    # Tests that initial failures to not block subsequent applies.
    # Initial apply for Widget fails, since CRD is not applied yet,
    # but the CRD apply should succeed. Subsequent custom resource
    # apply of Widget should succeed.
    apiVersion: example.com/v1
    kind: Widget
    metadata:
      name: foo
    ---
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: widgets.example.com
    spec:
      group: example.com
      scope: Namespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 14:06:37 UTC 2021
    - 669 bytes
    - Viewed (0)
  2. internal/arn/arn_test.go

    	}{
    		{
    			name: "valid resource ID must succeed",
    			args: args{
    				resourceID:   "my-role",
    				serverRegion: "us-east-1",
    			},
    			want: ARN{
    				Partition:    "minio",
    				Service:      "iam",
    				Region:       "us-east-1",
    				ResourceType: "role",
    				ResourceID:   "my-role",
    			},
    			wantErr: false,
    		},
    		{
    			name: "valid resource ID must succeed",
    			args: args{
    				resourceID:   "-my-role",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_trailing_slash.txt

    # go list should succeed to load a package ending with ".go" if the path does
    # not correspond to an existing local file. Listing a pattern ending with
    # ".go/" should try to list a package regardless of whether a file exists at the
    # path without the suffixed "/" or not.
    go list example.com/dotgo.go
    stdout ^example.com/dotgo.go$
    go list example.com/dotgo.go/
    stdout ^example.com/dotgo.go$
    
    # go get should succeed in either case, with or without a version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 982 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_bad_import.txt

    ! stdout ^error
    stdout 'incomplete'
    stdout 'bad dep: .*example.com[/\\]notfound'
    
    # Listing with -deps should also fail.
    ! go list -deps example.com/direct
    stderr example.com[/\\]notfound
    
    # But -e -deps should succeed.
    go list -e -deps example.com/direct
    stdout example.com/notfound
    
    
    # Listing an otherwise-valid package that imports some *other* package with an
    # unsatisfied import should also fail.
    # BUG: Today, it succeeds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 09 20:53:04 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  5. test/typeparam/issue50002.go

    		fmt.Printf("Should have panicked")
    	}
    }
    
    func main() {
    	// Test instantiation where the type switch/type asserts can't possibly succeed
    	// (since string does not implement I[byte]).
    	F[byte, string](S{}, false)
    
    	// Test instantiation where the type switch/type asserts should succeed
    	// (since S does implement I[byte])
    	F[byte, S](S{}, true)
    	F[byte, S](I[byte](S{}), true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_bad_import.txt

    ! stdout ^error
    stdout 'incomplete'
    stdout 'bad dep: .*example.com/notfound'
    
    # Listing with -deps should also fail.
    ! go list -deps example.com/direct
    stderr example.com/notfound
    
    # But -e -deps should succeed.
    go list -e -deps example.com/direct
    stdout example.com/notfound
    
    
    # Listing an otherwise-valid package that imports some *other* package with an
    # unsatisfied import should also fail.
    # BUG: Today, it succeeds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/monitor/monitor_test.go

    		}
    
    		return nil
    	}).Should(Succeed())
    
    	g.Eventually(func() error {
    		c := store.List(gvk.Gateway, "")
    		if len(c) == 0 {
    			return errors.New("no config")
    		}
    
    		gateway := c[0].Spec.(*networking.Gateway)
    		if gateway.Servers[0].Port.Protocol != "HTTP2" {
    			return errors.New("protocol has not been updated")
    		}
    
    		return nil
    	}).Should(Succeed())
    
    	g.Eventually(func() []config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/server_test.go

    			})
    			g := NewWithT(t)
    			s, err := NewServer(args, func(s *Server) {
    				s.kubeClient = kube.NewFakeClient()
    			})
    			g.Expect(err).To(Succeed())
    			stop := make(chan struct{})
    			g.Expect(s.Start(stop)).To(Succeed())
    			defer func() {
    				close(stop)
    				s.WaitUntilCompletion()
    			}()
    
    			if c.expNewCert {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    stderr '^no required module provides package example.net/missing; to add it:\n\tgo get example.net/missing$'
    
    
    # https://golang.org/issue/33526: 'go get' without '-d' should succeed
    # for a module whose root is a constrained-out package.
    #
    # Ideally it should silently succeed, but today it logs the "no Go source files"
    # error and succeeds anyway.
    
    go get example.net/tools@v0.1.0
    ! stderr .
    
    ! go build example.net/tools
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. samples/external/README.md

    ServiceEntries are misconfigured pods may see problems with server names.
    
    ## Try it out
    
    After an operator runs `kubectl create -f aptget.yaml` pods will be able to
    succeed with `apt-get update` and `apt-get install`.
    
    After an operator runs `kubectl create -f github.yaml` pods will be able to
    succeed with `git clone https://github.com/fortio/fortio.git`.
    
    Running `kubectl create -f pypi.yaml` allows pods to update Python libraries using `pip`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top