Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 329 for idea (0.04 sec)

  1. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            def dep = registry.getExternalModule("dep")
            dep.implementationClasspath.asFiles == [externalRuntimeDep]
        }
    
        def "locates module using manifest from runtime ClassLoader when run from IDEA with a project imported by IDEA"() {
            given:
            def classesDir = tmpDir.createDir("some-module/out/production/classes")
            def staticResourcesDir = tmpDir.createDir("some-module/out/production/resources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * Using the latest versions of Gradle, applied plugins, and your IDE should be your first move.
    * Kotlin DSL is fully supported in Intellij IDEA and Android Studio. Other IDEs, such as Eclipse or NetBeans, do not yet provide helpful tools for editing Gradle Kotlin DSL files, however, importing and working with Kotlin DSL-based builds work as usual.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

        }
    
        def "can build the minimal Eclipse model for a java project with the idea plugin applied"() {
    
            projectDir.file('build.gradle').text = """
    apply plugin: 'java'
    apply plugin: 'idea'
    
    dependencies {
        ${implementationConfiguration} files { throw new RuntimeException('should not be resolving this') }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    import gradlebuild.jvm.extension.UnitTestAndCompileExtension
    import org.gradle.internal.os.OperatingSystem
    import java.time.Duration
    
    plugins {
        groovy
        idea // Need to apply the idea plugin, so the extended configuration is taken into account on sync
        id("gradlebuild.module-jar")
        id("gradlebuild.dependency-modules")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. docs/en/docs/alternatives.md

        * Uvicorn (used by Starlette and **FastAPI**)
    
    !!! check "Inspired **FastAPI** to"
        Exist.
    
        The idea of declaring multiple things (data validation, serialization and documentation) with the same Python types, that at the same time provided great editor support, was something I considered a brilliant idea.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    [[changes_6.3]]
    == Upgrading from 6.2 and earlier
    
    === Potential breaking changes
    
    ==== Fewer dependencies available in IDEA
    
    Gradle no longer includes the annotation processor classpath as provided dependencies in IDEA.
    The dependencies IDEA sees at compile time are the same as what Gradle sees after resolving the compile classpath (configuration named `compileClasspath`).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/UnicodeEscaper.java

       * href="http://en.wikipedia.org/wiki/UTF-16">UTF-16</a> before calling this method.
       *
       * <p><b>Note:</b> When implementing an escaper it is a good idea to override this method for
       * efficiency by inlining the implementation of {@link #nextEscapeIndex(CharSequence, int, int)}
       * directly. Doing this for {@link com.google.common.net.PercentEscaper} more than doubled the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/escape/UnicodeEscaper.java

       * href="http://en.wikipedia.org/wiki/UTF-16">UTF-16</a> before calling this method.
       *
       * <p><b>Note:</b> When implementing an escaper it is a good idea to override this method for
       * efficiency by inlining the implementation of {@link #nextEscapeIndex(CharSequence, int, int)}
       * directly. Doing this for {@link com.google.common.net.PercentEscaper} more than doubled the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  9. src/sort/zsortfunc.go

    		if hint == decreasingHint {
    			reverseRange_func(data, a, b)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    		// The slice is likely already sorted.
    		if wasBalanced && wasPartitioned && hint == increasingHint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/stackalloc.go

    			if f.pass.debug > stackDebug {
    				fmt.Printf("stackalloc OpArg %s to %s\n", v, loc)
    			}
    			f.setHome(v, loc)
    			continue
    		}
    		// You might think this below would be the right idea, but you would be wrong.
    		// It almost works; as of 105a6e9518 - 2021-04-23,
    		// GOSSAHASH=11011011001011111 == cmd/compile/internal/noder.(*noder).embedded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top