Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 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. src/container/heap/heap_test.go

    import (
    	"math/rand"
    	"testing"
    )
    
    type myHeap []int
    
    func (h *myHeap) Less(i, j int) bool {
    	return (*h)[i] < (*h)[j]
    }
    
    func (h *myHeap) Swap(i, j int) {
    	(*h)[i], (*h)[j] = (*h)[j], (*h)[i]
    }
    
    func (h *myHeap) Len() int {
    	return len(*h)
    }
    
    func (h *myHeap) Pop() (v any) {
    	*h, v = (*h)[:h.Len()-1], (*h)[h.Len()-1]
    	return
    }
    
    func (h *myHeap) Push(v any) {
    	*h = append(*h, v.(int))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top