Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 10 (0.17 sec)

  1. docs/multi-user/README.md

    Create new canned policy file `getonly.json`. This policy enables users to download all objects under `my-bucketname`.
    
    ```json
    cat > getonly.json << EOF
    {
      "Version": "2012-10-17",
      "Statement": [
    	{
    	  "Action": [
    		"s3:GetObject"
    	  ],
    	  "Effect": "Allow",
    	  "Resource": [
    		"arn:aws:s3:::my-bucketname/*"
    	  ],
    	  "Sid": ""
    	}
      ]
    }
    EOF
    ```
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 21 06:38:06 GMT 2023
    - 8K bytes
    - Viewed (0)
  2. docs/batch-jobs/README.md

    	notify:
    	  endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    	  token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    	retry:
    	  attempts: 10 # number of retries for the job before giving up
    	  delay: "500ms" # least amount of delay between each retry
    ```
    
    You can create and run multiple 'replication' jobs at a time there are no predefined limits set.
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Oct 06 06:00:43 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  3. docs/multi-user/admin/README.md

    Create new canned policy file `adminManageUser.json`. This policy enables admin user to
    manage other users.
    
    ```json
    cat > adminManageUser.json << EOF
    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Action": [
            "admin:CreateUser",
            "admin:DeleteUser",
            "admin:ConfigUpdate"
          ],
          "Effect": "Allow",
          "Sid": ""
        },
        {
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 21 06:38:06 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  4. cni/README.md

    capability.
    
    The following example grabs the last 10 `kubelet` logs containing the string "cmdAdd" in the log message.
    
    ```console
    $ gcloud logging read "resource.type=k8s_node AND jsonPayload.SYSLOG_IDENTIFIER=kubelet AND jsonPayload.MESSAGE:cmdAdd" --limit 10 --format json
    ```
    
    ## Other Reference
    
    The framework for this implementation of the CNI plugin is based on the
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  5. docs/bucket/notifications/README.md

    ```
    
    ```
    go run nats.go
    2016/10/12 06:39:18 Connected
    2016/10/12 06:39:18 Subscribing to subject 'bucketevents'
    ```
    
    Open another terminal and upload a JPEG image into `images` bucket.
    
    ```
    mc cp myphoto.jpg myminio/images
    ```
    
    The example `nats.go` program prints event notification to console.
    
    ```
    go run nats.go
    2016/10/12 06:51:26 Connected
    2016/10/12 06:51:26 Subscribing to subject 'bucketevents'
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  6. docs/bucket/versioning/README.md

            <ExcludedPrefixes>
              <Prefix>*/__magic</Prefix>
            </ExcludedPrefixes>
            <ExcludedPrefixes>
              <Prefix>*/_staging</Prefix>
            </ExcludedPrefixes>
    
            <!-- .. up to 10 prefixes in all -->
    </VersioningConfiguration>
    ```
    
    ### Features
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu May 04 21:43:52 GMT 2023
    - 11.9K bytes
    - Viewed (1)
  7. regression-test/README.md

    11:55:40 V/InstrumentationResultParser: OK (12 tests)
    ...
    11:55:40 I/XmlResultReporter: XML test result file generated at /Users/myusername/workspace/okhttp/regression-test/build/outputs/regression-results/connected/TEST-pixel3a-Q(AVD) - 10-android-test-.xml. Total tests 13, passed 11, assumption_failure 1, ignored 1,
    ...
    BUILD SUCCESSFUL in 1m 30s
    63 actionable tasks: 61 executed, 2 up-to-date
    
    ```
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Fri Nov 13 07:09:56 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  8. docs/bucket/replication/README.md

    The following minimal permission policy is needed by admin user setting up replication on the `source`:
    
    ```
    {
     "Version": "2012-10-17",
     "Statement": [
      {
        "Action": [
            "admin:SetBucketTarget",
            "admin:GetBucketTarget"
        ],
        "Effect": "Allow",
        "Sid": ""
      },
      {
       "Effect": "Allow",
       "Action": [
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 24 23:46:33 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  9. docs/bigdata/README.md

        --num-executors 1 \
        --driver-memory 512m \
        --executor-memory 512m \
        --executor-cores 1 \
        examples/jars/spark-examples*.jar 10
    ```
    
    The job should produce an output as shown below. Note the value of pi in the output.
    
    ```
    17/03/22 23:21:10 INFO DAGScheduler: Job 0 finished: reduce at SparkPi.scala:38, took 1.302805 s
    Pi is roughly 3.1445191445191445
    ```
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
  10. operator/README.md

        pilot:
          k8s:
            resources:
              requests:
                cpu: 1000m # override from default 500m
                memory: 4096Mi # ... default 2048Mi
            hpaSpec:
              maxReplicas: 10 # ... default 5
              minReplicas: 2  # ... default 1
            nodeSelector: # ... default empty
              master: "true"
            tolerations: # ... default empty
            - key: dedicated
              operator: Exists
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
Back to top