Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 474 for logic (0.05 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionApplicationHandler.kt

    }
    
    
    interface SoftwareTypeConventionRepository {
        fun findConventions(softwareTypeName: String): SoftwareTypeConventionResolutionResults?
    }
    
    
    /**
     * Transformation logic for the kinds of resolution results that appear in conventions.
     * For any of the supported result records, supports replacing the `conventions { ... }` receiver in it with
     * the given [targetBaseReceiver].
     */
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    				}
    			} else {
    				// ...otherwise fall back on the old behavior of uploading all
    				// unuploaded files.
    				//
    				// TODO(rfindley): invert this logic following more testing. We
    				// should only upload if we know both the asof date and the report
    				// date, and they are acceptable.
    				u.logger.Printf("Uploadable (missing date): %s", fi.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

            (isa<TF::TPUExecuteOp, TF::TPUExecuteAndUpdateVariablesOp>(def_op))) {
          return true;
        }
        if (BlockArgument block_arg = mlir::dyn_cast<BlockArgument>(arg)) {
          // Skip the folding logic if the block argument is not from the function
          // arguments. This can happen when the argument is from a while loop.
          if (block_arg.getParentRegion() != &func_op.getRegion()) {
            return false;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```
    
    This situation may arise when plugins or build logic eagerly queries an existing JVM Configuration's attributes to create a new Configuration with the same attributes.
    Previously, this logic would have omitted the two above noted attributes entirely, while now the same logic will copy the attributes and finalize the project's Java toolchain.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/pkgspecial.go

    func LookupPkgSpecial(pkgPath string) PkgSpecial {
    	pkgSpecialsOnce.Do(func() {
    		// Construct pkgSpecials from various package lists. This lets us use
    		// more flexible logic, while keeping the final map simple, and avoids
    		// the init-time cost of a map.
    		pkgSpecials = make(map[string]PkgSpecial)
    		set := func(elt string, f func(*PkgSpecial)) {
    			s := pkgSpecials[elt]
    			f(&s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

        """-PcommitId=%dep.$dependencyBuildId.build.vcs.number% $extraParameters "-PgitUserName=$gitUserName" "-PgitUserEmail=$gitUserEmail" $pluginPortalUrlOverride %additional.gradle.parameters%"""
    
    /**
     * Align with build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
     */
    enum class KillProcessMode {
        KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS,
        KILL_PROCESSES_STARTED_BY_GRADLE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val snapshot: Map<String, Any?>
        ) : ConfigurationCacheFingerprint() {
            companion object {
                /**
                 * The placeholder for system properties modified by the build logic at the time of
                 * reading. Such properties shouldn't be taken into account when comparing snapshots.
                 */
                val IGNORED: Any = Ignored.INSTANCE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

     *
     * <strong>Do not build on-top of this visitor. If you want to track cross-project dependencies,
     * use {@link org.gradle.api.internal.artifacts.configurations.ProjectComponentObservationListener}</strong>
     *
     * TODO: The logic in this visitor should be integrated directly into the DefaultLocalConfigurationMetadataBuilder
     * so that we instantly mark configurations as observed as their metadata is constructed. That would be an improvement
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/cds.go

    	if req == nil {
    		return true
    	}
    	switch proxy.Type {
    	case model.Waypoint:
    		if model.HasConfigsOfKind(req.ConfigsUpdated, kind.Address) {
    			// TODO: this logic is identical to that used in LDS, consider refactor into a common function
    			// taken directly from LDS... waypoints need CDS updates on kind.Address changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

         *
         * <p>Eventually, in Gradle 9.0, when {@link BuildIdentifier#isCurrentBuild()} is removed, all this logic can disappear.</p>
         */
        private LocalComponentGraphResolveState copyComponentWithForeignId(ProjectComponentIdentifier projectIdentifier) {
            ProjectState projectState = projectStateRegistry.stateFor(projectIdentifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top