Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for myHelp (0.11 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/containers-scope/kotlin/build.gradle.kts

            testLogging.showStackTraces = true
        }
        val myCheck by registering {
            doLast { /* assert on something meaningful */ }
        }
        check {
            dependsOn(myCheck)
        }
        register("myHelp") {
            doLast { /* do something helpful */ }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 351 bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * <p>
         * javadoc -helpfile C:/user/myhelp.html java.awt
         */
        @Nullable @Optional @PathSensitive(NAME_ONLY) @InputFile
        public File getHelpFile() {
            return helpFile.getValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

        }
    
        def "determines Gradle home by class bundled in JAR located in valid distribution subdirectory '#jarDirectory'"() {
            given:
            def jar = distDir.file("$jarDirectory/mydep-1.2.jar")
            createJarFile(jar)
    
            when:
            def clazz = loadClassFromJar(jar)
            def installation = CurrentGradleInstallationLocator.locateViaClass(clazz).getInstallation()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/depmgmt/root-dep-last.xml

                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
                <dependency>
                    <groupId>test</groupId>
                    <artifactId>mydep</artifactId>
                    <version>0.2</version>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 951 bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/depmgmt/other-import.xml

        <version>0.1-SNAPSHOT</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>test</groupId>
                    <artifactId>mydep</artifactId>
                    <version>0.3</version>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 732 bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/depmgmt/import.xml

        <version>0.1-SNAPSHOT</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>test</groupId>
                    <artifactId>mydep</artifactId>
                    <version>0.1</version>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 726 bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/depmgmt/root-dep-first.xml

        <artifactId>test</artifactId>
        <version>0.1-SNAPSHOT</version>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>test</groupId>
                    <artifactId>mydep</artifactId>
                    <version>0.2</version>
                </dependency>
                <dependency>
                    <groupId>test</groupId>
                    <artifactId>import</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 951 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            if (otherAttributeType.isAssignableFrom(attribute.getType())) {
                return Cast.uncheckedCast(get());
            }
    
            // Attempt to coerce myself into the other attribute's type
            // - I am desugared and the other attribute is strongly typed, usually the case if I am sourced from published metadata and the other from the local build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. docs/en/docs/history-design-future.md

    </blockquote>
    
    ## Investigation
    
    By using all the previous alternatives I had the chance to learn from all of them, take ideas, and combine them in the best way I could find for myself and the teams of developers I have worked with.
    
    For example, it was clear that ideally it should be based on standard Python type hints.
    
    Also, the best approach was to use already existing standards.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

      cluster/kubectl.sh config set-cluster local --server=https://${API_HOST}:${API_SECURE_PORT} --certificate-authority=${ROOT_CA_FILE}
      cluster/kubectl.sh config set-credentials myself ${AUTH_ARGS}
      cluster/kubectl.sh config set-context local --cluster=local --user=myself
      cluster/kubectl.sh config use-context local
      cluster/kubectl.sh
    EOF
    else
      cat <<EOF
    The kubelet was started.
    
    Logs:
      ${KUBELET_LOG}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top