Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for convlit (0.22 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

            participants.add(replacedBy);
    
            //We need to ensure that the conflict is orderly injected to the list of conflicts
            //Brand new conflict goes to the end
            //If we find any matching conflict we have to hook up with it
    
            //Find an existing matching conflict
            for (K participant : participants) {
                Conflict c = conflictsByParticipant.get(participant);
                if (c != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

        }
    
        /**
         * Resolves the conflict by delegating to the conflict resolver who selects single version from given candidates. Executes provided action against the conflict resolution result object.
         */
        @Override
        public void resolveNextConflict(Action<ConflictResolutionResult> resolutionAction) {
            assert hasConflicts();
            ConflictContainer<ModuleIdentifier, ComponentState>.Conflict conflict = conflicts.popConflict();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

            !conflict.conflictExists()
    
            when:
            conflict = handler.registerCandidate(
                candidate(capability, cs2)
            )
    
            then:
            conflict.conflictExists()
    
            when:
            // use a reasonably high number so that the test becomes at best flaky if we break the contract
            50.times {
                ComponentState cs = component("group", "m_${it}")
                expectedIds << cs.id.module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

        api(libs.testng)
        api(libs.bsh) {
            because("""We need to create a capability conflict between "org.beanshell:bsh", and "org.beanshell:beanshell" by explicitly including this lib
                version of bsh, instead of depending on the transitive version contributed by testng.  This lib contributes the "beanshell" capability,
                and the conflict resolution rules from capabilities.json ensures this is the version that is resolved.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/PotentialConflictFactory.java

        static <T> PotentialConflict potentialConflict(@Nullable final ConflictContainer<ModuleIdentifier, T>.Conflict conflict) {
            if (conflict == null) {
                return NO_CONFLICT;
            }
            return new HasConflict(conflict.participants);
        }
    
        static PotentialConflict noConflict() {
            return NO_CONFLICT;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

    #include "tsl/platform/statusor.h"
    
    #define DEBUG_TYPE "run-tf-graph-optimization"
    
    namespace tensorflow {
    namespace {
    // Creates a pass to convert MLIR to Graph, run user-specified Graph
    // Optimization Passes and convert back to MLIR.
    // Constraints: This pass expects that all operations in the MLIR module either
    // belong to 'tf' or '_tf' dialect. The output is in '_tf' dialect.
    class GraphOptPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. schema/naming.go

    	if ns.SingularTable {
    		return ns.toSchemaName(table)
    	}
    	return ns.toSchemaName(inflection.Singular(table))
    }
    
    // ColumnName convert string to column name
    func (ns NamingStrategy) ColumnName(table, column string) string {
    	return ns.toDBName(column)
    }
    
    // JoinTableName convert string to join table name
    func (ns NamingStrategy) JoinTableName(str string) string {
    	if !ns.NoLowerCase && strings.ToLower(str) == str {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ReleasedVersionsDetails.kt

        }
    
        private
        fun VersionNumber.format() =
            // reformat according to our versioning scheme, since toString() would typically convert 1.0 to 1.0.0
            GradleVersion.version("$major.${minor}${if (micro > 0) ".$micro" else ""}${if (qualifier != null) "-$qualifier" else ""}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSessionComponent.kt

        fun ConeKotlinType.asKtType() = analysisSession.firSymbolBuilder.typeBuilder.buildKtType(this)
    
        fun KtPsiDiagnostic.asKtDiagnostic(): KaDiagnosticWithPsi<*> =
            KT_DIAGNOSTIC_CONVERTER.convert(analysisSession, this as KtDiagnostic)
    
        fun ConeDiagnostic.asKtDiagnostic(
            source: KtSourceElement,
            callOrAssignmentSource: KtSourceElement?,
        ): KaDiagnosticWithPsi<*>? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/envoyfilter.go

    			// create a match all object
    			cpw.Match = &networking.EnvoyFilter_EnvoyConfigObjectMatch{Context: networking.EnvoyFilter_ANY}
    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top