Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 348 for SUCCEED (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/scala/scala3/groovy/src/test/scala/org/gradle/sample/PersonSpec.scala

    import org.junit.runner.RunWith
    import org.scalatest.FunSpec
    import org.scalatest.junit.JUnitRunner
    
    @RunWith(classOf[JUnitRunner])
    class PersonSpec extends FunSpec:
      describe("create a person") {
        it("should succeed for scala") {
          val person: Named = new Person(List("bob smith"))
          person
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 342 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/scala/scala3/kotlin/src/test/scala/org/gradle/sample/PersonSpec.scala

    import org.junit.runner.RunWith
    import org.scalatest.FunSpec
    import org.scalatest.junit.JUnitRunner
    
    @RunWith(classOf[JUnitRunner])
    class PersonSpec extends FunSpec:
      describe("create a person") {
        it("should succeed for scala") {
          val person: Named = new Person(List("bob smith"))
          person
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
  7. docs/iam/policies/pbac-tests.sh

    export MC_HOST_myminio1="http://minio123:minio123@localhost:9000/"
    
    ./mc cp /etc/issue myminio1/test-bucket
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: PutObject to bucket: test-bucket should succeed. Failed"
    	exit 1
    fi
    
    ./mc cp /etc/issue myminio1/multi-key-poc | grep -q "Insufficient permissions to access this path"
    ret=$?
    if [ $ret -eq 0 ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/reflect/66056.md

    as though it were used in a for/range loop.
    The new methods [Type.CanSeq] and [Type.CanSeq2] report whether calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 11:54:18 UTC 2024
    - 282 bytes
    - Viewed (0)
  9. src/errors/errors.go

    // used in preference to simple equality checks:
    //
    //	if errors.Is(err, fs.ErrExist)
    //
    // is preferable to
    //
    //	if err == fs.ErrExist
    //
    // because the former will succeed if err wraps [io/fs.ErrExist].
    //
    // [As] examines the tree of its first argument looking for an error that can be
    // assigned to its second argument, which must be a pointer. If it succeeds, it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. hack/testdata/multi-resource-1.yaml

    # Tests that initial failures to not block subsequent applies.
    # Pod must be before namespace, so it initially fails. Second
    # apply of pod should succeed, since namespace finally exists.
    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      namespace: multi-resource-ns
      labels:
        name: test-pod-label
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 462 bytes
    - Viewed (0)
Back to top