Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for setOp (0.08 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	T1, err := time.Parse(time.RFC3339, "2016-05-19T09:59:59Z")
    	if err != nil {
    		panic("test setup error")
    	}
    	return T1
    }
    
    func justAfterThePriorHour() time.Time {
    	T1, err := time.Parse(time.RFC3339, "2016-05-19T09:01:00Z")
    	if err != nil {
    		panic("test setup error")
    	}
    	return T1
    }
    
    func justBeforeThePriorHour() time.Time {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      virtual void SetUp() {}
    
      // Override this to define how to tear down the environment.
      virtual void TearDown() {}
     private:
      // If you see an error about overriding the following function or
      // about it being private, you have mis-spelled SetUp() as Setup().
      struct Setup_should_be_spelled_SetUp {};
      virtual Setup_should_be_spelled_SetUp* Setup() { return NULL; }
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	nDisks := 16
    	erasureDisks, err := getRandomDisks(nDisks)
    	if err != nil {
    		t.Fatalf("Initialization of drives for Erasure setup: %s", err)
    	}
    	objLayer, _, err := initObjectLayer(ctx, mustGetPoolEndpoints(0, erasureDisks...))
    	if err != nil {
    		t.Fatalf("Initialization of object layer failed for Erasure setup: %s", err)
    	}
    	if err = newTestConfig(globalMinioDefaultRegion, objLayer); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    All you need to do in most cases is configure the appropriate compilation and runtime dependencies and add any necessary configuration to the `test` task. The following example shows a simple setup that uses JUnit Platform and changes the maximum heap size for the tests' JVM to 1 gigabyte:
    
    .A basic configuration for the 'test' task
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    	}
    	_, err := s.adm.SetConfigKV(ctx, strings.Join(configCmds, " "))
    	if err != nil {
    		c.Fatalf("unable to setup LDAP for tests: %v", err)
    	}
    
    	s.RestartIAMSuite(c)
    }
    
    // SetUpLDAPWithNonNormalizedBaseDN - expects to setup an LDAP test server using
    // the test LDAP container and canned data from
    // https://github.com/minio/minio-ldap-testing
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    func initServiceDiscovery(t test.Failer) (model.ConfigStore, *Controller, *xdsfake.Updater) {
    	return initServiceDiscoveryWithOpts(t, false)
    }
    
    // initServiceDiscoveryWithoutEvents initializes a test setup with no events. This avoids excessive attempts to push
    // EDS updates to a full queue
    func initServiceDiscoveryWithoutEvents(t test.Failer) (model.ConfigStore, *Controller) {
    	store := memory.Make(collections.Pilot)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    			if len(matchingServices) == 0 && !ignoreUnmeshed {
    				fmt.Fprintf(cmd.OutOrStdout(),
    					"Warning: No Kubernetes Services select pod %s (see https://istio.io/docs/setup/kubernetes/additional-setup/requirements/ )\n", // nolint: lll
    					kname(pod.ObjectMeta))
    			}
    			// TODO look for port collisions between services targeting this pod
    
    			kubeClient, err := ctx.CLIClientWithRevision(opts.Revision)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. pkg/kubelet/status/status_manager_test.go

    	m := newTestManager(client)
    	m.podManager.(mutablePodManager).AddPod(staticPod)
    	m.podManager.(mutablePodManager).AddPod(mirrorPod)
    	t.Logf("Verify setup.")
    	assert.True(t, kubetypes.IsStaticPod(staticPod), "SetUp error: staticPod")
    	assert.True(t, kubetypes.IsMirrorPod(mirrorPod), "SetUp error: mirrorPod")
    	assert.Equal(t, m.podManager.TranslatePodUID(mirrorPod.UID), kubetypes.ResolvedPodUID(staticPod.UID))
    
    	status := getRandomPodStatus()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  9. cmd/object-api-multipart_test.go

    	"github.com/minio/minio/internal/hash"
    	"github.com/minio/minio/internal/ioutil"
    )
    
    // Wrapper for calling NewMultipartUpload tests for both Erasure multiple disks and single node setup.
    func TestObjectNewMultipartUpload(t *testing.T) {
    	if runtime.GOOS == globalWindowsOSName {
    		t.Skip()
    	}
    	ExecObjectLayerTest(t, testObjectNewMultipartUpload)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	JMP ok
    #endif
    needtls:
    #ifdef GOOS_plan9
    	// skip TLS setup on Plan 9
    	JMP ok
    #endif
    #ifdef GOOS_solaris
    	// skip TLS setup on Solaris
    	JMP ok
    #endif
    #ifdef GOOS_illumos
    	// skip TLS setup on illumos
    	JMP ok
    #endif
    #ifdef GOOS_darwin
    	// skip TLS setup on Darwin
    	JMP ok
    #endif
    #ifdef GOOS_openbsd
    	// skip TLS setup on OpenBSD
    	JMP ok
    #endif
    
    #ifdef GOOS_windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top