Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for execute (0.18 sec)

  1. cmd/test-utils_test.go

    	objAPITest(objLayer, ErasureTestStr, bucketErasure, erAPIRouter, credentials, t)
    
    	// clean up the temporary test backend.
    	removeRoots(append(erasureDisks, fsDir))
    }
    
    // ExecExtendedObjectLayerTest will execute the tests with combinations of encrypted & compressed.
    // This can be used to test functionality when reading and writing data.
    func ExecExtendedObjectLayerAPITest(t *testing.T, objAPITest objAPITestType, endpoints []string) {
    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. docs/bucket/notifications/README.md

        print(" [x] %r" % body)
    
    channel.basic_consume(callback,
                          queue=queue_name,
                          no_ack=False)
    
    channel.start_consuming()
    ```
    
    Execute this example python program to watch for RabbitMQ events on the console.
    
    ```py
    python rabbit.py
    ```
    
    Open another terminal and upload a JPEG image into `images` bucket.
    
    ```
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  3. cmd/xl-storage_test.go

    		t.Fatalf("Unable to create file, %s", err.Error())
    	}
    	// Parent directory must have write permissions, this is read + execute.
    	if err = os.Chmod(pathJoin(path, "no-permissions"), 0o555); err != nil {
    		t.Fatalf("Unable to chmod directory, %s", err.Error())
    	}
    	t.Cleanup(func() {
    		os.Chmod(pathJoin(path, "no-permissions"), 0o775)
    	})
    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