Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 230 for forced (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                return dependencies;
            }
    
            // Need to wrap all dependencies to force them.
            ImmutableList.Builder<LocalOriginDependencyMetadata> forcedDependencies = ImmutableList.builder();
            for (LocalOriginDependencyMetadata rawDependency : dependencies) {
                forcedDependencies.add(rawDependency.forced());
            }
            return forcedDependencies.build();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            result.components == ids(root, selected, c)
        }
    
        def "direct dependency can force a particular version"() {
            given:
            def forced = revision("a", "1")
            def evicted = revision("a", "2")
            def b = revision("b")
            traverses root, b
            traverses root, forced, force: true
            doesNotTraverse b, evicted
    
            when:
            def result = resolve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            return isSameOrNewer("3.2") && !(isSameOrNewer("4.0") && isSameOrOlder("4.0.2"));
        }
    
        @Override
        boolean isToolingApiHasCauseOnForcedCancel() {
            // Versions before 5.1 would discard context on forced cancel
            return isSameOrNewer("5.1-rc-1");
        }
    
        @Override
        boolean isToolingApiLogsFailureOnCancel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            }
        }
    
        private fun getFirTypeScope(type: KaFirType): FirTypeScope? = type.coneType.scope(
            firResolveSession.useSiteFirSession,
            getScopeSession(),
            CallableCopyTypeCalculator.Forced,
            requiredMembersPhase = FirResolvePhase.STATUS,
        )
    
        private fun getFirSyntheticPropertiesScope(coneType: ConeKotlinType, typeScope: FirTypeScope): FirSyntheticPropertiesScope? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    | The dependency has a dynamic version and some versions did not match the <<variant_model#sec:variant-aware-matching, requested attributes>>.
    
    | Forced
    | The build enforces the version of the dependency through an enforced platform or resolution strategy.
    |===
    
    If multiple selection reasons exist, the insight report lists all of them.
    
    == Troubleshooting
    
    [[sec:resolving-version-conflict]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public boolean isRerunTasks() {
            return rerunTasks;
        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public void setRerunTasks(boolean rerunTasks) {
            this.rerunTasks = rerunTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. src/net/conf.go

    		if !hasDNSSource {
    			dnsSource = true
    			if first == "" {
    				first = "dns"
    			}
    		}
    	}
    
    	// Cases where Go can handle it without cgo and C thread overhead,
    	// or where the Go resolver has been forced.
    	switch {
    	case filesSource && dnsSource:
    		if first == "files" {
    			return hostLookupFilesDNS, dnsConf
    		} else {
    			return hostLookupDNSFiles, dnsConf
    		}
    	case filesSource:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

                                                &devices)))
        return signalPassFailure();
    
      // If there is no runtime device information and data format is not explicitly
      // forced, there is nothing to do.
      if (devices.NumDevices() == 0 && force_data_format_.empty()) return;
    
      func.walk([&](LayoutSensitiveInterface layout_sensitive_interface) {
        // Get desired op data format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/endpointshards.go

    	// This is updated on push, based on shards. If the previous list is different than
    	// current list, a full push will be forced, to trigger a secure naming update.
    	// Due to the larger time, it is still possible that connection errors will occur while
    	// CDS is updated.
    	ServiceAccounts sets.String
    }
    
    // Keys gives a sorted list of keys for EndpointShards.Shards.
    // Calls to Keys should be guarded with a lock on the EndpointShards.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/net/lookup_test.go

    	}
    
    	mustHaveExternalNetwork(t)
    
    	testLookupNoData(t, "default resolver")
    
    	func() {
    		defer forceGoDNS()()
    		testLookupNoData(t, "forced go resolver")
    	}()
    
    	func() {
    		defer forceCgoDNS()()
    		testLookupNoData(t, "forced cgo resolver")
    	}()
    }
    
    func testLookupNoData(t *testing.T, prefix string) {
    	attempts := 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top