Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for setupFns (0.16 sec)

  1. pkg/test/framework/suite.go

    	return s
    }
    
    func (s *suiteImpl) Setup(fn resource.SetupFn) Suite {
    	s.setupFns = append(s.setupFns, fn)
    	return s
    }
    
    func (s *suiteImpl) Teardown(fn resource.TeardownFn) Suite {
    	s.teardownFns = append(s.teardownFns, fn)
    	return s
    }
    
    func (s *suiteImpl) SetupParallel(fns ...resource.SetupFn) Suite {
    	s.setupFns = append(s.setupFns, func(ctx resource.Context) error {
    		g := multierror.Group{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice_test.go

    		s := setupSDS(t)
    		c := s.Connect()
    		s.Verify(c.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{rootResourceName}}), expectRoot)
    		s.Verify(c.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{rootResourceName}}), expectRoot)
    		c.ExpectNoResponse(t)
    	})
    	t.Run("parallel", func(t *testing.T) {
    		s := setupSDS(t)
    		cert := s.Connect()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    func TestWatchErrorIncorrectConfiguration(t *testing.T) {
    	scenarios := []struct {
    		name            string
    		setupFn         func(opts *setupOptions)
    		requestOpts     storage.ListOptions
    		enableWatchList bool
    		expectedErr     error
    	}{
    		{
    			name:        "no newFunc provided",
    			setupFn:     func(opts *setupOptions) { opts.newFunc = nil },
    			requestOpts: storage.ListOptions{ProgressNotify: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (1)
  4. pkg/test/framework/components/echo/common/deployment/echos.go

    		}
    		res = append(res, p)
    	}
    	return res
    }
    
    // SetupSingleNamespace calls Setup and returns a SingleNamespaceView.
    func SetupSingleNamespace(view *SingleNamespaceView, cfg Config) resource.SetupFn {
    	cfg.NamespaceCount = 1
    	return func(ctx resource.Context) error {
    		// Perform a setup with 1 namespace.
    		var apps Echos
    		if err := Setup(&apps, cfg)(ctx); err != nil {
    			return err
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. docs/config/README.md

    ```
    KEY:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. docs/sts/web-identity.md

    to MFA authentication challenges, etc). After successful login, the user is redirected back to the MinIO console. This redirect URL is specified as a parameter by MinIO when the user is redirected to the OpenID Provider in the beginning. For some setups, extra configuration may be required for this step to work correctly.
    
    For a simple setup where the user/client app accesses MinIO directly (i.e. with no intervening proxies/load-balancers), and each MinIO server (if there are more than one)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. cmd/generic-handlers.go

    const (
    	dotdotComponent = ".."
    	dotComponent    = "."
    )
    
    func hasBadHost(host string) error {
    	if globalIsCICD && strings.TrimSpace(host) == "" {
    		// under CI/CD test setups ignore empty hosts as invalid hosts
    		return nil
    	}
    	_, err := xnet.ParseHost(host)
    	return err
    }
    
    // Check if the incoming path has bad path components,
    // such as ".." and "."
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. cmd/endpoint.go

    			// Non docker/kubernetes environment we do not need to wait.
    			if !foundLocal && orchestrated {
    				<-keepAliveTicker.C
    			}
    		}
    	}
    
    	// On Kubernetes/Docker setups DNS resolves inappropriately sometimes
    	// where there are situations same endpoints with multiple disks
    	// come online indicating either one of them is local and some
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. Makefile

    	@(env bash $(PWD)/docs/site-replication/run-ssec-object-replication-with-compression.sh)
    
    verify: install-race ## verify minio various setups
    	@echo "Verifying build with race"
    	@(env bash $(PWD)/buildscripts/verify-build.sh)
    
    verify-healing: install-race ## verify healing and replacing disks with minio binary
    	@echo "Verify healing build with race"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. docs/bucket/versioning/README.md

    - All versions, including delete-markers should be deleted before deleting a bucket.
    - **Versioning feature is only available in erasure coded and distributed erasure coded setups**.
    
    ## How to configure versioning on a bucket
    
    Each bucket created has a versioning configuration associated with it. By default bucket is unversioned as shown below
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top