Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for generateDocs (0.32 sec)

  1. platforms/documentation/docs/src/snippets/bestPractices/taskGroupDescription/tests/generateDocs.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/bestPractices/taskGroupDescription/tests/taskGroupDescription.out

    Documentation tasks
    -------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 106 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/bestPractices/taskGroupDescription/kotlin/build.gradle.kts

    tasks.register("generateDocs") {
        group = "Documentation"
        description = "Generates the HTML documentation for this project."
    
        doLast {
            // action implementation
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/bestPractices/taskGroupDescription/groovy/build.gradle

    tasks.register('generateDocs') {
        group = 'Documentation'
        description = 'Generates the HTML documentation for this project.'
    
        doLast {
            // action implementation
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187 bytes
    - Viewed (0)
  5. hack/update-generated-docs.sh

    BINS=(
    	./cmd/gendocs
    	./cmd/genkubedocs
    	./cmd/genman
    	./cmd/genyaml
    )
    GOPROXY=off go install "${BINS[@]}"
    
    # Run all doc generators.
    # $1 is the directory to put those generated documents
    generate_docs() {
      local dest="$1"
    
      mkdir -p "${dest}/docs/user-guide/kubectl/"
      gendocs "${dest}/docs/user-guide/kubectl/"
    
      mkdir -p "${dest}/docs/admin/"
      genkubedocs "${dest}/docs/admin/" "kube-apiserver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/NebulaPluginsSmokeTest.groovy

                plugins {
                    id "com.netflix.nebula.dependency-lock" version "$nebulaDepLockVersion"
                }
            """.stripIndent()
    
            then:
            runner('buildEnvironment', 'generateLock').build()
    
            where:
            nebulaDepLockVersion << TestedVersions.nebulaDependencyLock.versions
        }
    
        @Issue("gradle/gradle#3798")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. .github/workflows/ci.yml

          - name: 'Publish'
            env:
              CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
              CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
            run: ./util/deploy_snapshot.sh
    
      generate_docs:
        permissions:
          contents: write
        name: 'Generate latest docs'
        needs: test
        if: github.event_name == 'push' && github.repository == 'google/guava'
        runs-on: ubuntu-latest
        steps:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top