Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,171 for resolution_ (0.28 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForDependency/tests/disabling-transitive-dependency-resolution.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  2. src/go/parser/resolver_test.go

    				if got := fromParser[k]; got != want {
    					t.Errorf("%s resolved to %s, want %s", pos(k), pos(got), pos(want))
    				}
    				delete(fromParser, k)
    			}
    			// What remains in fromParser are unexpected resolutions.
    			for k, got := range fromParser {
    				t.Errorf("%s resolved to %s, want no object", pos(k), pos(got))
    			}
    		})
    	}
    }
    
    // declsFromParser walks the file and collects the map associating an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[resolution_rules]]
    = Customizing resolution of a dependency directly
    
    This section covers mechanisms Gradle offers to directly influence the behavior of the dependency resolution engine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/calls/KtCall.kt

    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundArrayAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundVariableAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaDelegatedConstructorCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaErrorCallInfo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

    import org.gradle.internal.component.resolution.failure.describer.IncompatibleArtifactVariantsFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.IncompatibleGraphVariantsFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.IncompatibleRequestedConfigurationFailureDescriber;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/UniAddress.java

     * this class to use jCIFS properly. Name resolusion is
     * handled internally to the <code>jcifs.smb1.smb1</code> package.
     * <p>
     * This class is a wrapper for both {@link jcifs.smb1.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

    import java.util.stream.Collectors;
    
    /**
     * Holds the resolution state for a local component. The state is calculated as required, and an instance can be used for multiple resolutions across a build tree.
     *
     * <p>The aim is to create only a single instance of this type per project and reuse that for all resolution that happens in a build tree. This isn't quite the case yet.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ApiRequirementNativeDependencyResolver.java

                if (resolution.getRequirement() instanceof ApiAdaptedNativeLibraryRequirement) {
                    ApiAdaptedNativeLibraryRequirement adaptedRequirement = (ApiAdaptedNativeLibraryRequirement) resolution.getRequirement();
                    resolution.setRequirement(adaptedRequirement.getOriginal());
    //                resolution.setLibraryBinary(null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimeFunctionResolver.kt

            resolvers.forEach {
                val resolution = it.resolve(receiverClass, name, parameterValueBinding)
                if (resolution is RuntimeFunctionResolver.Resolution.Resolved)
                    return resolution
            }
            return RuntimeFunctionResolver.Resolution.Unresolved
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 10:30:52 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionAccess.java

    /**
     * An internal lazy reference to a graph resolution. Provides access to the inputs and
     * outputs of a graph resolution.
     */
    public interface ResolutionAccess {
    
        /**
         * Get the owner of the resolution.
         */
        ResolutionHost getHost();
    
        /**
         * Get the request attributes for this resolution. Calling this method will lock-in the
    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