Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for initialize (0.19 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    public synchronized class BasicLifecycleHandle extends AbstractLifecycleHan { public void BasicLifecycleHandle(); public void initialize(); } org/codehaus/plexus/lifecycle/BootstrapLifecycleHa.class package org.codehaus.plexus.lifecycle; public synchronized class BootstrapLifecycleHa extends AbstractLifecycleHan { public void BootstrapLifecycleHa(); public void initialize(); } org/codehaus/plexus/lifecycle/DefaultLifecycleHand.class package org.codehaus.plexus.lifecycle; public synchronized class...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    public synchronized class BasicLifecycleHandle extends AbstractLifecycleHan { public void BasicLifecycleHandle(); public void initialize(); } org/codehaus/plexus/lifecycle/BootstrapLifecycleHa.class package org.codehaus.plexus.lifecycle; public synchronized class BootstrapLifecycleHa extends AbstractLifecycleHan { public void BootstrapLifecycleHa(); public void initialize(); } org/codehaus/plexus/lifecycle/DefaultLifecycleHand.class package org.codehaus.plexus.lifecycle; public synchronized class...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    public synchronized class BasicLifecycleHandle extends AbstractLifecycleHan { public void BasicLifecycleHandle(); public void initialize(); } org/codehaus/plexus/lifecycle/BootstrapLifecycleHa.class package org.codehaus.plexus.lifecycle; public synchronized class BootstrapLifecycleHa extends AbstractLifecycleHan { public void BootstrapLifecycleHa(); public void initialize(); } org/codehaus/plexus/lifecycle/DefaultLifecycleHand.class package org.codehaus.plexus.lifecycle; public synchronized class...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 233.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    public synchronized class BasicLifecycleHandle extends AbstractLifecycleHan { public void BasicLifecycleHandle(); public void initialize(); } org/codehaus/plexus/lifecycle/BootstrapLifecycleHa.class package org.codehaus.plexus.lifecycle; public synchronized class BootstrapLifecycleHa extends AbstractLifecycleHan { public void BootstrapLifecycleHa(); public void initialize(); } org/codehaus/plexus/lifecycle/DefaultLifecycleHand.class package org.codehaus.plexus.lifecycle; public synchronized class...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 205.7K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			expectedRespStatus: http.StatusForbidden,
    		},
    	}
    
    	// Iterating over the cases, fetching the object validating the response.
    	for i, testCase := range testCases {
    		// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    		rec := httptest.NewRecorder()
    		// construct HTTP request for Get Object end point.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       */
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible // StackOverflowError
      public void testTransform_StackOverflow() throws Exception {
        {
          /*
           * Initialize all relevant classes before running the test, which may otherwise poison any
           * classes it is trying to load during its stack overflow.
           */
          SettableFuture<Object> root = SettableFuture.create();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       */
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible // StackOverflowError
      public void testTransform_StackOverflow() throws Exception {
        {
          /*
           * Initialize all relevant classes before running the test, which may otherwise poison any
           * classes it is trying to load during its stack overflow.
           */
          SettableFuture<Object> root = SettableFuture.create();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    }
    
    // save resync status to resync.bin
    func saveResyncStatus(ctx context.Context, bucket string, brs BucketReplicationResyncStatus, objectAPI ObjectLayer) error {
    	data := make([]byte, 4, brs.Msgsize()+4)
    
    	// Initialize the resync meta header.
    	binary.LittleEndian.PutUint16(data[0:2], resyncMetaFormat)
    	binary.LittleEndian.PutUint16(data[2:4], resyncMetaVersion)
    
    	buf, err := brs.MarshalMsg(data)
    	if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  9. cmd/object-handlers.go

    	case authTypeStreamingSigned, authTypeStreamingSignedTrailer:
    		// Initialize stream signature verifier.
    		rd, s3Err = newSignV4ChunkedReader(r, rAuthType == authTypeStreamingSignedTrailer)
    		if s3Err != ErrNone {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL)
    			return
    		}
    	case authTypeStreamingUnsignedTrailer:
    		// Initialize stream chunked reader with optional trailers.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    }
    
    // srStateData represents the format of the current `srStateFile`.
    type srStateData struct {
    	Version int `json:"version"`
    
    	SRState srStateV1 `json:"srState"`
    }
    
    // Init - initialize the site replication manager.
    func (c *SiteReplicationSys) Init(ctx context.Context, objAPI ObjectLayer) error {
    	go c.startHealRoutine(ctx, objAPI)
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    	for {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
Back to top