Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for virun (0.27 sec)

  1. src/cmd/go/internal/modfetch/fetch.go

    	//
    	// Before Go 1.16, we extracted to a temporary directory with a random name
    	// then renamed it into place with os.Rename. On Windows, this failed with
    	// ERROR_ACCESS_DENIED when another process (usually an anti-virus scanner)
    	// opened files in the temporary directory.
    	//
    	// Go 1.14.2 and higher respect .partial files. Older versions may use
    	// partially extracted directories. 'go mod verify' can detect this,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    	c.Helper()
    	_, err := client.PutObject(ctx, bucket, object, bytes.NewBuffer([]byte("stuff")), 5, minio.PutObjectOptions{
    		UserTags: map[string]string{
    			"security": "public",
    			"virus":    "true",
    		},
    	})
    	if err != nil {
    		c.Fatalf("user was unable to upload the object: %v", err)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

          ],
          "Resource": [
            "arn:aws:s3:::%s/*"
          ],
          "Condition": {
            "ForAllValues:StringLike": {
              "s3:RequestObjectTagKeys": [
                "security",
                "virus"
              ]
            }
          }
        }
      ]
    }`, bucket, bucket, bucket, bucket))
    	err = s.adm.AddCannedPolicy(ctx, policy, policyBytes)
    	if err != nil {
    		c.Fatalf("policy add error: %v", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top