Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,600 for forced (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

                    new LockOutOfDateException("Did not resolve '" + forcedModule.getDisplayName() + "' which has been forced / substituted to a different version: '" + entry.getValue() + "'")));
            }
            return completedFailures;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. pkg/ctrlz/topics/assets/templates/mem.html

            <td>Completed GC cycles.</td>
        </tr>
    
        <tr>
            <td>NumForcedGC</td>
            <td id="NumForcedGC">{{.NumForcedGC}} GC cycles</td>
            <td>GC cycles that were forced by the application calling the GC function.</td>
        </tr>
    
        <tr>
            <td>GCCPUFraction</td>
            <td id="GCCPUFraction"></td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/config.go

    // the external linker be used to complete the link.
    func mustLinkExternal(ctxt *Link) (res bool, reason string) {
    	if ctxt.Debugvlog > 1 {
    		defer func() {
    			if res {
    				ctxt.Logf("external linking is forced by: %s\n", reason)
    			}
    		}()
    	}
    
    	if platform.MustLinkExternal(buildcfg.GOOS, buildcfg.GOARCH, false) {
    		return true, fmt.Sprintf("%s/%s requires external linking", buildcfg.GOOS, buildcfg.GOARCH)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     * Scope tests should not forget checking contained names, as they're a public part of the [KaScope] API.
     *
     * Note: Many scopes wouldn't work correctly if the contained name sets were broken, as these names are often the basis for the search.
     * But this is not a good reason for a lack of tests, as the scope implementation is not forced to use these name sets internally, and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_test.go

    	}
    
    	if !*useGdb && !*force && testenv.Builder() == "linux-386-longtest" {
    		// The latest version of Delve does support linux/386. However, the version currently
    		// installed in the linux-386-longtest builder does not. See golang.org/issue/39309.
    		skipReasons += "not run when testing delve on linux-386-longtest builder unless forced (-f); "
    	}
    
    	if *useGdb {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

        def "substitutes transitive dependency with forced version"() {
            given:
            mavenRepo.module("org.external", "external-dep", '1.0').dependsOn("org.test", "buildB", "1.0").publish()
    
            buildA.buildFile << """
                dependencies {
                    implementation "org.external:external-dep:1.0"
                }
                configurations.runtimeClasspath.resolutionStrategy.force("org.test:buildB:5.0")
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

      - Variant 'runtimeElements' contains a dependency on enforced platform 'org:platform'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/crypto/tls/boring_test.go

    			}
    			if _, _, err := testHandshake(t, clientConfig, serverConfig); err != nil {
    				t.Fatalf("got error: %v, expected success", err)
    			}
    
    			// With fipstls forced, bad curves should be rejected.
    			t.Run("fipstls", func(t *testing.T) {
    				fipstls.Force()
    				defer fipstls.Abandon()
    				_, _, err := testHandshake(t, clientConfig, serverConfig)
    				if err != nil && isBoringCurve(curveid) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                        variant("enforcedApiElements", ['org.gradle.usage': 'java-api', 'org.gradle.category': 'enforced-platform'])
                        constraint("org:foo:1.1")
                        noArtifacts()
                    }
                    edge('org:foo:1.2', 'org:foo:1.1') {
                        forced()
                        byConstraint()
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ZincScalaCompilerIntegrationTest.groovy

            classHash(person) != old(classHash(person))
            classHash(house) != old(classHash(house))
            other.lastModified() == old(other.lastModified())
        }
    
        def "recompiles all Scala code when forced"() {
            file("src/main/scala/Person.scala") << """class Person(val name: String = "foo", val age: Int = 1)"""
            file("src/main/scala/House.scala") << """class House(val owner: Person = new Person())"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top