Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for imposes (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStableConfigurationCacheIntegrationTest.groovy

            given:
            def snippets = ExternalProcessFixture.processBuilder().groovy.newSnippets(new ExternalProcessFixture(testDirectory))
    
            buildFile """
                ${snippets.imports}
                ${snippets.body}
            """
    
            when:
            configurationCacheFails ":help"
    
            then:
            problems.assertFailureHasProblems(failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/ToolingApiEclipseProjectDependenciesCrossVersionSpec.groovy

            project.projectDependencies[0].classpathAttributes.find { it.name == 'without_test_code' }.value == "true"
        }
    
        def "project dependency pointing to test fixture project exposes test sources"() {
            setup:
            settingsFile << "include 'a', 'b'"
            file('a/build.gradle') << """
                plugins {
                    id 'java-library'
                    id 'java-test-fixtures'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. doc/next/5-toolchain.md

    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    For 386 and amd64, the compiler will use information from PGO to align certain
    hot blocks in loops.  This improves performance an additional 1-1.5% at
    a cost of an additional 0.1% text and binary size.  This is currently only implemented
    on 386 and amd64 because it has not shown an improvement on other platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list_direct_work.txt

    stdout 'example.com/a false'
    stdout 'example.com/b false'
    stdout 'rsc.io/sampler false'
    stdout 'golang.org/x/text true'
    stdout 'example.com/c true' # Uses the information in go.mod without checking imports.
    
    # Check that 'go list all' correctly populates "indirect" module annotation.
    go list -f '{{.ImportPath}} {{with .Module}}{{.Indirect}}{{end}}' all
    stdout 'example.com/a false'
    stdout 'example.com/b false'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputsInternal.java

    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.provider.Provider;
    
    /**
     * Internal counterpart of {@link ResolutionOutputs} that exposes the results as
     * their internal types, as well as the raw results before conversion to user-facing types.
     */
    public interface ResolutionOutputsInternal extends ResolutionOutputs {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ImportOptimizer.kt

            if (descriptor?.canBeReferencedViaImport() != true) return null
    
            return descriptor.getImportableDescriptor().fqNameSafe
        }
    
        /**
         * Copy of `org.jetbrains.kotlin.idea.imports.ImportsUtils.canBeReferencedViaImport`.
         */
        private fun DeclarationDescriptor.canBeReferencedViaImport(): Boolean {
            if (this is PackageViewDescriptor ||
                DescriptorUtils.isTopLevelDeclaration(this) ||
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

     */
    
    package org.gradle.api.project;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Project;
    import org.gradle.api.file.Directory;
    
    /**
     * An isolated view of {@link Project} that exposes only those properties that are safe to access from outside of
     * <code>this</code> project, from the perspective of isolated projects.
     *
     * @since 8.8
     */
    @Incubating
    public interface IsolatedProject {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/AnalysisStatementFilter.kt

    
    fun AnalysisStatementFilter.or(other: AnalysisStatementFilter): AnalysisStatementFilter = AnalysisStatementFiltersImplementations.DefaultOrFilter(this, other)
    
    
    fun AnalysisStatementFilter.implies(other: AnalysisStatementFilter) = this.not().or(other)
    
    
    fun AnalysisStatementFilter.not(): AnalysisStatementFilter = AnalysisStatementFiltersImplementations.DefaultNotFilter(this)
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/tidy.go

    // license that can be found in the LICENSE file.
    
    // go mod tidy
    
    package modcmd
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/toolchain"
    	"context"
    	"fmt"
    
    	"golang.org/x/mod/modfile"
    )
    
    var cmdTidy = &base.Command{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionAccess.java

         * this method will not perform resolution.
         */
        ResolutionResultProvider<ResolverResults> getResults();
    
        /**
         * Get the public representation of {@link #getResults()}, which exposes the raw
         * results as well-known user-facing types like {@link org.gradle.api.file.FileCollection}.
         */
        ResolutionOutputsInternal getPublicView();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top