Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,144 for Allows (0.39 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

         *
         * In the future, we could narrow the number of configurations that need to be re-evaluated, but it would
         * be better to get rid of the behavior that allows configurations to be modified once they've been observed.
         *
         * @see org.gradle.api.internal.artifacts.ivyservice.moduleconverter.DefaultRootComponentMetadataBuilder.MetadataHolder#tryCached(ComponentIdentifier)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

        internal val topLevelFunctionMap: MutableMap<FqName, MutableSet<KtNamedFunction>> = mutableMapOf()
        internal val topLevelPropertyMap: MutableMap<FqName, MutableSet<KtProperty>> = mutableMapOf()
    
        /**
         * Allows quickly finding [KtClassOrObject]s which have a given simple name as a supertype. The map may contain local classes as well.
         */
        internal val classesBySupertypeName: MutableMap<Name, MutableSet<KtClassOrObject>> = mutableMapOf()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentStatus.java

        }
    
        /**
         * Returns {@link #allowed()} or {@link #disabled()} AgentStatus according to the value of the flag.
         *
         * @param agentInstrumentationAllowed if {@code true} then the returned status allows instrumentation
         */
        static AgentStatus of(boolean agentInstrumentationAllowed) {
            return agentInstrumentationAllowed ? allowed() : disabled();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/testing/internal/testdeps/deps.go

    // Package testdeps provides access to dependencies needed by test execution.
    //
    // This package is imported by the generated main package, which passes
    // TestDeps into testing.Main. This allows tests to use packages at run time
    // without making those packages direct dependencies of package testing.
    // Direct dependencies of package testing are harder to write tests for.
    package testdeps
    
    import (
    	"bufio"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    /**
     * Allows services to be added to a registry.
     */
    public interface ServiceRegistration {
        /**
         * Adds a service to this registry. The given object is closed when the associated registry is closed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeRegistry.java

    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Set;
    
    /**
     * Allows registration of software types implemented by plugins.
     */
    @ServiceScope(Scope.Build.class) // TODO: Might be too specific a scope, but needed something there
    public interface SoftwareTypeRegistry {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

             */
            fun exception(): Builder
    
            fun documentationSection(documentationSection: DocumentationSection): Builder
    
            /**
             * Allows the default location to be changed. The function is called by `build()`
             */
            fun mapLocation(mapper: (PropertyTrace) -> PropertyTrace): Builder
    
            fun build(): PropertyProblem
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"If true, SO_REUSEPORT will be used when binding the port, which allows "+
    			"more than one instance to bind on the same address and port. [default=false]")
    
    	fs.BoolVar(&s.PermitAddressSharing, "permit-address-sharing", s.PermitAddressSharing,
    		"If true, SO_REUSEADDR will be used when binding the port. This allows binding "+
    			"to wildcard IPs like 0.0.0.0 and specific IPs in parallel, and it avoids waiting "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
     * produce a merged provider which is more efficient than the naive sequential composite provider.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

            0 * _
        }
    
        def "disallows starting redirecting if test owner not provided"() {
            when: redirector.startRedirecting()
            then: thrown(AssertionError)
        }
    
        def "allows setting output owner"() {
            when:
            redirector.setOutputOwner("1")
            redirector.startRedirecting()
    
            then:
            redirector.outForwarder.outputOwner == "1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top