Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SetWrite (0.1 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Write access grants the capability to modify or remove the contents of a file,
         * or to add or remove files to/from a directory.
         */
        void setWrite(boolean write);
    
        /**
         * Enables or disables execute access to a file or directory for a certain class of users.
         * <p>
         * Execute access grant the capability to run a file as a program; executing a directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      ResourceId GetResourceId() const { return resource_id_; }
    
      void SetAlloc() { effects_.set(kAlloc); }
      void SetFree() { effects_.set(kFree); }
      void SetRead() { effects_.set(kRead); }
      void SetWrite() { effects_.set(kWrite); }
      void SetUnknownEffect() { effects_.set(); }
      void SetResourceId(ResourceId resource_id) { resource_id_ = resource_id; }
      void AddEffects(const SideEffects& other_effects) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                                );
                                secondaryAccess.get().forEach(it -> {
                                    System.out.println("secondaryAccess { " +
                                            it.getName().get() + ", " + it.getRead().get() + ", " + it.getWrite().get() +
                                            "}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

         * <p>
         * Write access is the capability to modify or remove the contents of a file,
         * or to add or remove files to/from a directory.
         */
        boolean getWrite();
    
        /**
         * Describes if a certain class of users has execute access to a file or directory.
         * <p>
         * Execute access is the capability to run a file as a program; executing a directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top