Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Lankes (0.16 sec)

  1. cmd/test-utils_test.go

    	return obj, fsDirs, nil
    }
    
    func prepareErasure16(ctx context.Context) (ObjectLayer, []string, error) {
    	return prepareErasure(ctx, 16)
    }
    
    // TestErrHandler - Go testing.T satisfy this interface.
    // This makes it easy to run the TestServer from any of the tests.
    // Using this interface, functionalities to be used in tests can be
    // made generalized, and can be integrated in benchmarks/unit tests/go check suite tests.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    		SourceMTime:        objInfo.ModTime,
    		SourceETag:         objInfo.ETag,
    		ReplicationRequest: true,
    	}
    	return putOpts, nil
    }
    
    // ListBatchJobs - lists all currently active batch jobs, optionally takes {jobType}
    // input to list only active batch jobs of 'jobType'
    func (a adminAPIHandlers) ListBatchJobs(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  3. cmd/xl-storage_test.go

    		case err != nil && err != test.expError:
    			t.Errorf("Test %d: Expected error: %v, but got: %v", i, test.expError, err)
    		}
    	}
    }
    
    // TestXLStorageFormatFileChange - to test if changing the diskID makes the calls fail.
    func TestXLStorageFormatFileChange(t *testing.T) {
    	volume := "fail-vol"
    	xlStorage, _, err := newXLStorageTestSetup(t)
    	if err != nil {
    		t.Fatalf("Unable to create xlStorage test setup, %s", err)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
Back to top