Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 329 for idea (0.1 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.SourceSet
    import org.gradle.api.tasks.SourceSetContainer
    import org.gradle.api.tasks.TaskProvider
    import org.gradle.kotlin.dsl.*
    import org.gradle.plugins.ide.idea.IdeaPlugin
    import org.gradle.process.CommandLineArgumentProvider
    
    
    fun Project.addDependenciesAndConfigurations(prefix: String) {
        configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

                : []
        }
    
        def maybePrintAndroidStudioLogs(File studioSandboxDirAsFile) {
            if (useAndroidStudio) {
                File logFile = new File(studioSandboxDirAsFile, "/logs/idea.log")
                String message = logFile.exists() ? "\n${logFile.text}" : "Android Studio log file '${logFile}' doesn't exist, nothing to print."
                println("[ANDROID STUDIO LOGS] $message")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/sort/gen_sort_variants.go

    			reverseRange{{.FuncSuffix}}(data, a, b {{.ExtraArg}})
    			// 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: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

    import org.gradle.tooling.internal.consumer.Distribution
    import org.gradle.tooling.internal.protocol.InternalBuildProgressListener
    import org.gradle.tooling.model.GradleProject
    import org.gradle.tooling.model.idea.IdeaProject
    import org.junit.Assume
    import org.junit.Rule
    import spock.lang.Issue
    import spock.lang.Retry
    
    import java.util.concurrent.CopyOnWriteArrayList
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

            return merger.merge(child, parent, false, hints);
        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
         * <p>This calculation is only a heuristic based on our conventions.
         * In detail, the algo relies on the following assumptions: <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
            int maxTimeout = 2 * 60 * 1000;
            if (daemonParameters.getIdleTimeout() > maxTimeout) {
                daemonParameters.setIdleTimeout(maxTimeout);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

    import org.jetbrains.kotlin.analysis.test.framework.TestWithDisposable
    import org.jetbrains.kotlin.analysis.utils.errors.requireIsInstance
    import org.jetbrains.kotlin.idea.references.mainReference
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        to reformat the variables, but only inserts general TPUReshardVariablesOps in
        proper places, and TPUReshardVariablesOps interpret the compilation.
    
        The core idea of this optimization is to keep track of the formatting state
        of variables, and when the next desired state does not change, it can avoid
        reformatting. We associate a set of variables on a device with a formatting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

    import org.jetbrains.kotlin.analysis.utils.printer.parentOfType
    import org.jetbrains.kotlin.descriptors.*
    import org.jetbrains.kotlin.diagnostics.*
    import org.jetbrains.kotlin.idea.references.KtDefaultAnnotationArgumentReference
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.lexer.KtTokens
    import org.jetbrains.kotlin.psi.*
    import org.jetbrains.kotlin.psi.psiUtil.parentsWithSelf
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" }
    ----
    
    If you change the file using IntelliJ, don't forget to click the `sync` Gradle button:
    
    image::tutorial/intellij-idea-dep-man.png[]
    
    Run `./gradlew build --scan` and view the Build Scan results:
    
    image::tutorial/build-scan-change.png[]
    
    Run `./gradlew :app:dependencies` in the terminal to check the changes in the dependency tree:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top