Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for getRead (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                                        acc.getName().get() + ", " + acc.getRead().get() + ", " + acc.getWrite().get() + "}"
                                );
                                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)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

         * Describes if a certain class of users has read access to a file or directory.
         * <p>
         * Read access is the capability to view the contents of a file, or to list the contents of a directory.
         */
        boolean getRead();
    
        /**
         * Describes if a certain class of users has write access to a file or directory.
         * <p>
         * Write access is the capability to modify or remove the contents of a file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/NamedOperation.groovy

        String toString() {
            return "[operation $name]"
        }
    
        Instant getEnd() {
            def instant = end.get()
            if (instant == null) {
                throw new IllegalStateException("Operation '$name' has not completed yet.")
            }
            return instant
        }
    
        Duration getDuration() {
            return getEnd() - start
        }
    
        void completed(Instant when) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

                }
    
                class Bean {
                    @InputFiles FileCollection files
                }
    
                abstract class Test extends DefaultTask {
                    @Nested abstract Property<Bean> getBean()
                    @TaskAction def test() { assert false }
                }
    
                tasks.register('test', Test) {
                    bean = new Bean().tap {
                        files = configurations.implementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

          }
          is_cpu_read = parsed_name.type == kCpuDeviceType;
          return success();
        }
      }
      is_cpu_read = false;
      return success();
    }
    
    // Get the reads to hoist in the `replicate`.
    LogicalResult GetReads(FuncOp func, ReplicateOp replicate,
                           llvm::SmallVector<ReadVariableOp, 4>& reads) {
      for (Operation& op : replicate.getBody().front()) {
        if (auto read = llvm::dyn_cast<ReadVariableOp>(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Read access grants the capability to view the contents of a file,
         * or to list the contents of a directory.
         */
        void setRead(boolean read);
    
        /**
         * Enables or disables write access to a file or directory for a certain class of users.
         * <p>
         * Write access grants the capability to modify or remove the contents of a file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

                }
    
                class IncrementAndPrint implements FlowAction<Parameters> {
                    interface Parameters extends FlowParameters {
                        @Input Property<Bean> getBean()
                    }
                    void execute(Parameters parameters) {
                        parameters.with {
                            println("Bean.value = " + bean.get().value.incrementAndGet())
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    @Internal
                    Property<String> getUnused()
                }
    
                abstract class SomeTask extends DefaultTask {
                    @Nested
                    abstract Bean getBean()
    
                    @Nested
                    abstract Bean getUnusedBean()
    
                    @Internal
                    abstract Property<String> getValue()
    
                    @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

        // Compute rhs = offset - mean * multiplier
        Value rhs = rewriter.create<mhlo::MulOp>(bn_op.getLoc(), multiplier,
                                                 bn_op.getMean());
        rhs = rewriter.create<mhlo::SubtractOp>(bn_op.getLoc(), bn_op.getOffset(),
                                                rhs);
    
        // Broadcast `multiplier` and `rhs`
        Value shape_value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          result_batch_shape_compile_time_extents);
      auto result_batch_shape = rewriter->create<shape::BroadcastOp>(
          loc, shape_type, lhs_splitted.getHead(), rhs_splitted.getHead(),
          /*error=*/nullptr);
      // Lambda which handles the broadcasting of one side to the common
      // leading-batch dimensions.
      auto broadcast_one_side = [&](Value side, RankedTensorType type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top