Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 263 for Eaccess (0.69 sec)

  1. docs/bucket/notifications/README.md

    index*       (string)             Elasticsearch index to store/update events, index is auto-created
    format*      (namespace*|access)  'namespace' reflects current bucket/object list and 'access' reflects a journal of object operations, defaults to 'namespace'
    queue_dir    (path)               staging dir for undelivered messages e.g. '/home/events'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    		return
    	}
    
    	// Check if anonymous (non-owner) has access to list objects.
    	readable := globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
    		Action:          policy.ListBucketAction,
    		BucketName:      bucket,
    		ConditionValues: getConditionValues(r, "", auth.AnonymousCredentials),
    		IsOwner:         false,
    	})
    
    	// Check if anonymous (non-owner) has access to upload objects.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	if err != nil {
    		return res, err
    	}
    
    	if !skipAccessChecks(srcVolume) {
    		// Stat a volume entry.
    		if err = Access(srcVolumeDir); err != nil {
    			return res, convertAccessError(err, errVolumeAccessDenied)
    		}
    	}
    
    	if !skipAccessChecks(dstVolume) {
    		if err = Access(dstVolumeDir); err != nil {
    			return res, convertAccessError(err, errVolumeAccessDenied)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    	for _, b := range accInfo.Buckets {
    		gotBuckets.Add(b.Name)
    		if !(b.Access.Read && b.Access.Write) {
    			c.Fatalf("root user should have read and write access to bucket: %v", b.Name)
    		}
    	}
    	shouldHaveBuckets := set.CreateStringSet(bucket2, bucket)
    	if !gotBuckets.Equals(shouldHaveBuckets) {
    		c.Fatalf("root user should have access to all buckets")
    	}
    
    	// This must fail.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // An access token contains the security information for a logon session.
    // The system creates an access token when a user logs on, and every
    // process executed on behalf of the user has a copy of the token.
    // The token identifies the user, the user's groups, and the user's
    // privileges. The system uses the token to control access to securable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    		return InvalidHandle, err
    	}
    	var access uint32
    	switch mode & (O_RDONLY | O_WRONLY | O_RDWR) {
    	case O_RDONLY:
    		access = GENERIC_READ
    	case O_WRONLY:
    		access = GENERIC_WRITE
    	case O_RDWR:
    		access = GENERIC_READ | GENERIC_WRITE
    	}
    	if mode&O_CREAT != 0 {
    		access |= GENERIC_WRITE
    	}
    	if mode&O_APPEND != 0 {
    		access &^= GENERIC_WRITE
    		access |= FILE_APPEND_DATA
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    	if err = xlStorage.MakeVol(context.Background(), "success-vol"); err != nil {
    		t.Fatalf("Unable to create volume, %s", err)
    	}
    	if err = xlStorage.AppendFile(context.Background(), "success-vol", "abc/def/ghi/success-file", []byte("Hello, world")); err != nil {
    		t.Fatalf("Unable to create file, %s", err)
    	}
    	if err = xlStorage.AppendFile(context.Background(), "success-vol", "abc/xyz/ghi/success-file", []byte("Hello, world")); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

            << inverse_scale_constant_op << ".\n";
        return failure();
      }
    
      return success();
    }
    
    // Matches the following pattern that represents uniform quantization:
    //
    // `call @uniform_quantize(%input, %inverse_scale, %zero_point)`
    //
    // Provides helper functions to access the operands and the callee.
    class UniformQuantizeFunctionCallPattern {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          target_repl_values.push_back(v);
        }
    
        rewriter.replaceOp(old_reorder_op, target_repl_values);
        return success();
      };
    };
    
    #include "tensorflow/compiler/mlir/lite/transforms/generated_prepare_tf.inc"
    
    // Returns success if all the operations in the `op`'s regions including `op`
    // itself are legal in a TFLite pipeline.
    LogicalResult ValidateOp(Operation *op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                 << result.getType();
        }
      }
      return mlir::success();
    }
    
    // Check that op marked for outside compilation has an ancestor also marked for
    // outside compilation.
    LogicalResult CheckAncestorNotOutsideComp(Operation* op) {
      if (!op->getAttrOfType<StringAttr>(kXlaOutsideCompilationAttr))
        return mlir::success();
      Operation* iter_op = op;
      while (auto* parent_op = iter_op->getParentOp()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top