Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for generateXml (0.12 sec)

  1. platforms/ide/base-ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/IdePluginTest.groovy

            cleanTask.group == 'IDE'
        }
    
        def addsWorkerTask() {
            when:
            new TestIdePlugin().apply(project)
    
            then:
            Task worker = project.tasks['generateXml']
            Task ideTask = project.tasks['testIde']
            ideTask.taskDependencies.getDependencies(ideTask) == [worker] as Set
    
            Task cleaner = project.tasks['cleanGenerateXml']
            cleaner instanceof Delete
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/TestIdePlugin.groovy

    class TestIdePlugin extends IdePlugin {
        @Override protected String getLifecycleTaskName() {
            return 'testIde'
        }
    
        @Override protected void onApply(Project target) {
            def worker = target.task('generateXml')
            addWorker(target.getTasks().named(worker.getName()), worker.getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1008 bytes
    - Viewed (0)
  3. hack/update-translations.sh

    KUBECTL_FILES=()
    KUBECTL_DEFAULT_LOCATIONS=(
      "pkg/kubectl/cmd"
      "staging/src/k8s.io/kubectl/pkg/cmd"
    )
    KUBECTL_IGNORE_FILES_REGEX="cmd/kustomize/kustomize.go"
    
    generate_pot="false"
    generate_mo="false"
    fix_translations="false"
    
    while getopts "hf:xkg" opt; do
      case ${opt} in
        h)
          echo "$0 [-f files] [-x] [-k] [-g]"
          echo " -f <file-path>: Files to process"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/TomlFileGenerator.java

        @Input
        public abstract Property<DefaultVersionCatalog> getDependenciesModel();
    
        @OutputFile
        public abstract RegularFileProperty getOutputFile();
    
        @TaskAction
        void generateToml() throws IOException {
            DefaultVersionCatalog model = getDependenciesModel().get();
            File outputFile = getOutputFile().getAsFile().get();
            File outputDir = outputFile.getParentFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top