Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 333 for resolveDfs (3.09 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenCentralDependencyResolveIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Online)
    class MavenCentralDependencyResolveIntegrationTest extends AbstractIntegrationSpec {
        def "resolves a minimal dependency from Maven Central"() {
            given:
            buildFile << """
    repositories {
        mavenCentral()
        mavenCentral { // just test this syntax works.
            name = "otherCentral"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/go/ast/resolve.go

    	for ; scope != nil; scope = scope.Outer {
    		if obj := scope.Lookup(ident.Name); obj != nil {
    			ident.Obj = obj
    			return true
    		}
    	}
    	return false
    }
    
    // An Importer resolves import paths to package Objects.
    // The imports map records the packages already imported,
    // indexed by package id (canonical import path).
    // An Importer must determine the canonical import path and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/typeUtils.kt

    import org.jetbrains.kotlin.fir.types.abbreviatedType
    import org.jetbrains.kotlin.fir.types.toRegularClassSymbol
    
    /**
     * Returns whether [subClass] is a strict subtype of [superClass]. Resolves [subClass] to [FirResolvePhase.SUPER_TYPES].
     */
    fun isSubClassOf(subClass: FirClass, superClass: FirClass, useSiteSession: FirSession, allowIndirectSubtyping: Boolean = true): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveInputChangesStepTest.groovy

        def changes = Mock(ExecutionStateChanges)
        def optionalChanges = Optional.of(changes)
        def inputChanges = Mock(InputChangesInternal)
        def result = Mock(Result)
    
    
        def "resolves input changes when required"() {
            when:
            def returnedResult = step.execute(work, context)
            then:
            _ * work.executionBehavior >> UnitOfWork.ExecutionBehavior.INCREMENTAL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolver.java

     */
    package org.apache.maven.repository.legacy.resolver.conflict;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.resolver.ResolutionNode;
    
    /**
     * Resolves conflicting artifacts by always selecting the farthest declaration. Farthest is defined as the
     * declaration that has the most transitive steps away from the project being built.
     *
     * @since 3.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPathTranslator.java

    import java.io.File;
    import java.nio.file.Path;
    
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.model.*;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    @Named
    @Singleton
    public class DefaultPathTranslator implements PathTranslator {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginRequestApplicator.java

    import org.gradle.plugin.management.internal.PluginRequests;
    
    import javax.annotation.Nullable;
    
    @ServiceScope(Scope.Build.class)
    public interface PluginRequestApplicator {
    
        /**
         * Resolves the given {@link PluginRequests} into the given {@link ScriptHandlerInternal#getScriptClassPath()},
         * exports the resulting classpath into the given {@link ClassLoaderScope}, closes it and then applies
         * the requested plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/runtime/runtime1.go

    }
    
    // reflectlite_resolveNameOff resolves a name offset from a base pointer.
    //
    //go:linkname reflectlite_resolveNameOff internal/reflectlite.resolveNameOff
    func reflectlite_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
    	return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
    }
    
    // reflectlite_resolveTypeOff resolves an *rtype offset from a base type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run.go

    		// Mark all UDP dns traffic with dst port 53 as zone 2. These are application client packets towards DNS resolvers.
    		f.Run("-p", "udp", "--dport", "53",
    			"-j", constants.CT, "--zone", "2")
    		// Mark all UDP dns traffic with src port 53 as zone 1. These are response packets from the DNS resolvers.
    		f.WithChain(constants.PREROUTING).Run("-p", "udp", "--sport", "53",
    			"-j", constants.CT, "--zone", "1")
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultPathTranslator.java

     * under the License.
     */
    package org.apache.maven.model.path;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    @Named
    @Singleton
    public class DefaultPathTranslator implements PathTranslator {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top