Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,715 for forced (0.28 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

        }
    }
    """
    
            when:
            fails 'resolve'
    
            then:
            failureHasCause("Did not resolve 'org:test:1.1' which has been forced / substituted to a different version: '1.0'")
        }
    
        def "fails when a substitute overwrites a locked version"() {
            given:
            mavenRepo.module('org', 'test', '1.0').publish()
            mavenRepo.module('org', 'test', '1.1').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStopState.java

    public enum DaemonStopState {
        /**
         * Daemon was stopped cleanly and all work stopped.
         */
        Clean,
        /**
         * Daemon could not be stopped cleanly and some work may still be running.
         */
        Forced
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:45:11 UTC 2024
    - 953 bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/metrics/metrics.go

    	"k8s.io/kubernetes/pkg/volume/csimigration"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    const pluginNameNotAvailable = "N/A"
    
    const (
    	// Force detach reason is timeout
    	ForceDetachReasonTimeout = "timeout"
    	// Force detach reason is the node has an out-of-service taint
    	ForceDetachReasonOutOfService = "out-of-service"
    	attachDetachController        = "attach_detach_controller"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/EnforcedPlatformPublicationValidator.java

        private final static String SUPPRESSION = "enforced-platform";
        private final static String LONG_EXPLANATION = "In general publishing dependencies to enforced platforms is a mistake: " +
            "enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. " +
            "This can result in hard to diagnose dependency resolution errors.";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

        Type quantizedType = converter.convert(elementType);
        assert(quantizedType &&
               "Converter accepted a type that it did not convert");
    
        // TODO: Map to a qbarrier with an attribute like [Forced] to signal that
        // this is a forced/hard-coded constraint.
        auto qbarrier = rewriter.create<QuantizeCastOp>(op.getLoc(), quantizedType,
                                                        op.getInputs());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedDependencyResult.java

         * may have been requested, or the version may have been substituted due to conflict resolution, or by being forced, or for some other reason.
         */
        ResolvedComponentResult getSelected();
    
        /**
         * Returns the resolved variant for this dependency.
         *
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. gradle/dependency-management/capabilities.json

                "org.codehaus.groovy:groovy-all"
            ],
            "selected": "org.codehaus.groovy:groovy"
        },
    
        // forced upgrade: the following modules will automatically be replaced with the selected module
        // even if there's no conflict, and forces an upgrade to the specified version
        {
            "name": "asm",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/ModuleForcingResolveRuleSpec.groovy

            _ * details.getOldRequested() >> requested
            1 * details.useTarget(DefaultModuleComponentSelector.newSelector(mid(requested.group, requested.name), forcedVersion), ComponentSelectionReasons.FORCED)
            0 * details._
    
            where:
            requested                                            | forcedVersion
            newSelector(mid("org", "module2"), "0.9")            | "2.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/testing/allocs.go

    	for i := 0; i < runs; i++ {
    		f()
    	}
    
    	// Read the final statistics
    	runtime.ReadMemStats(&memstats)
    	mallocs += memstats.Mallocs
    
    	// Average the mallocs over the runs (not counting the warm-up).
    	// We are forced to return a float64 because the API is silly, but do
    	// the division as integers so we can ask if AllocsPerRun()==1
    	// instead of AllocsPerRun()<2.
    	return float64(mallocs / uint64(runs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

                sync.releaseAll()
                resultHandler.finished()
            }
    
            then:
            noExceptionThrown()
        }
    
        def "can cancel build through forced stop"() {
            // in-process call does not support forced stop
            toolingApi.requireDaemons()
            buildFile << """
    task hang {
        doLast {
            ${server.callFromBuild("waiting")}
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top