Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,715 for forced (0.41 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * <p>
         * If your intention is to exclude a particular transitive dependency
         * because you don't like the version it pulls in to the configuration
         * then consider using forced versions' feature: {@link ResolutionStrategy#force(Object...)}.
         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'java' // so that I can declare 'implementation' dependencies
         * }
         *
         * dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. pkg/api/persistentvolumeclaim/util.go

    // been requested.
    // This should be called after DropDisabledFields so that if the AnyVolumeDataSource feature
    // gate is disabled, dataSourceRef will be forced to empty, ensuring pre-1.22 behavior.
    // This should be called before NormalizeDataSources, so that data sources other than PVCs
    // and VolumeSnapshots can only be set through the dataSourceRef field and not the dataSource
    // field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionsSpec.groovy

        }
    
        def "provides no op resolve rule when no rules or forced modules configured"() {
            given:
            def details = Mock(DependencySubstitutionInternal)
    
            when:
            substitutions.ruleAction.execute(details)
    
            then:
            0 * details._
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

    }
    configurations.conf.resolutionStrategy.force('org.test:ivy:1.2')
    """
            expect:
            succeeds 'checkDep'
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module('org.test:maven:1.0') {
                        configuration = 'compile'
                        edge('org.test:ivy:1.0', 'org.test:ivy:1.2') {
                            forced()
                            artifact(name: 'default')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/AbstractCache.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data
       * structure, and is thus forced to return the query keys instead of the cached keys. This is only
       * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}.
       *
       * @since 11.0
       */
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    // (for example, buildV) are in cmd/go/internal/cfg.
    
    var (
    	forcedAsmflags   []string // internally-forced flags for cmd/asm
    	forcedGcflags    []string // internally-forced flags for cmd/compile
    	forcedLdflags    []string // internally-forced flags for cmd/link
    	forcedGccgoflags []string // internally-forced flags for gccgo
    )
    
    var BuildToolchain toolchain = noToolchain{}
    var ldBuildmode string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/AbstractCache.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data
       * structure, and is thus forced to return the query keys instead of the cached keys. This is only
       * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}.
       *
       * @since 11.0
       */
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

     *
     * If your intention is to exclude a particular transitive dependency
     * because you don't like the version it pulls in to the configuration
     * then consider using the forced versions feature: [ResolutionStrategy.force].
     *
     * @param group the optional group identifying the dependencies to be excluded.
     * @param module the optional module name identifying the dependencies to be excluded.
     * @return this
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

         * initiated by the client (MSIE post requests after successful NTLM SSP
         * authentication). If false and the user has not been authenticated yet
         * the client will be forced to send an authentication (server sends
         * HttpServletResponse.SC_UNAUTHORIZED).
         * @return True if the negotiation is complete, otherwise false
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.4K bytes
    - Viewed (0)
  10. src/runtime/proc_test.go

    		t.Skip("skipping on uniprocessor")
    	}
    	P := 4
    	N := 10
    	if testing.Short() {
    		P = 3
    		N = 3
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(P))
    	// If runtime triggers a forced GC during this test then it will deadlock,
    	// since the goroutines can't be stopped/preempted.
    	// Disable GC for this test (see issue #10958).
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top