Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 211 for get_arg (0.17 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/build.gradle

    // tag::bundle-task[]
    @CacheableTask                                       // <1>
    abstract class BundleTask extends NpmTask {
    
        @Override @Internal                              // <2>
        ListProperty<String> getArgs() {
            super.getArgs()
        }
    
        @InputDirectory
        @SkipWhenEmpty
        @PathSensitive(PathSensitivity.RELATIVE)         // <3>
        abstract DirectoryProperty getScripts()
    
        @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DelegatingExecSpec.java

        }
    
        @Override
        default ExecSpec setArgs(Iterable<?> args) {
            getDelegate().setArgs(args);
            return this;
        }
    
        @Override
        default List<String> getArgs() {
            return getDelegate().getArgs();
        }
    
        @Override
        default List<CommandLineArgumentProvider> getArgumentProviders() {
            return getDelegate().getArgumentProviders();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/localFunctionMultipleCapturing.ir.txt

                    obj: GET_VAR 'a: kotlin.Int declared in <root>.Foo.test.call' type=kotlin.Int origin=null
                  CALL 'public final fun consume (obj: kotlin.Any): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
                    obj: GET_VAR '<this>: <root>.Foo declared in <root>.Foo.test' type=<root>.Foo origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

                      receiver: GET_VAR '<this>: <root>.Operation.Add declared in <root>.Operation.Add.<get-firstValue>' type=<root>.Operation.Add origin=null
            PROPERTY name:secondValue visibility:public modality:FINAL [val]
              FIELD PROPERTY_BACKING_FIELD name:secondValue type:kotlin.Int visibility:private [final]
                EXPRESSION_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule2.ir.txt

                        CALL 'private final fun TopAppBar (title: kotlin.String): kotlin.Unit declared in <root>' type=kotlin.Unit origin=null
                          title: GET_VAR 'title: kotlin.String declared in <root>.ArticleScreenContent' type=kotlin.String origin=null
                  GET_VAR 'bottomBarContent: @[MyComposable] kotlin.Function0<kotlin.Unit> declared in <root>.ArticleScreenContent' type=@[MyComposable] kotlin.Function0<kotlin.Unit> origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiver.ir.txt

                  $this: CALL 'public open fun <get-length> (): kotlin.Int declared in kotlin.String' type=kotlin.Int origin=GET_PROPERTY
                    $this: GET_VAR 'p0: kotlin.String declared in <root>.CodeFragment.run' type=kotlin.String origin=null
                  other: CALL 'public open fun <get-length> (): kotlin.Int declared in kotlin.String' type=kotlin.Int origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

                    public List<String> getCleanTasks() {
                        return input.getCleanTasks();
                    }
    
                    @Override
                    public List<String> getArgs() {
                        return input.getArgs();
                    }
    
                    @Nullable
                    @Override
                    public List<String> getGradleOpts() {
                        return input.getGradleOpts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaExecSpec.java

            argumentsSpec.setArgs(arguments);
            return this;
        }
    
        @Nullable
        @Override
        public List<String> getArgs() {
            return argumentsSpec.getArgs();
        }
    
        @Override
        public List<CommandLineArgumentProvider> getArgumentProviders() {
            return argumentsSpec.getArgumentProviders();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.cc

    //===----------------------------------------------------------------------===//
    
    mlir::LogicalResult PwStreamResultsOp::verify() {
      if (getArgs().size() != getNames().size()) {
        return emitOpError()
               << "has a mismatch between the number of arguments and their names ("
               << getArgs().size() << " vs. " << getNames().size() << ")";
      }
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

                        public Foo() { }
    
                        @Restricted
                        public abstract Property<String> getBar();
                    }
    
                    @Override
                    public String toString() {
                        return "id = " + getId().get() + "\\nbar = " + getFoo().getBar().get() + (isFooConfigured ? "\\n(foo is configured)" : "");
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top