Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for normalization (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.model.internal.manage.schema.ModelSchemaStore;
    import org.gradle.model.internal.registry.ModelRegistry;
    import org.gradle.model.internal.type.ModelType;
    import org.gradle.normalization.InputNormalizationHandler;
    import org.gradle.normalization.internal.InputNormalizationHandlerInternal;
    import org.gradle.process.ExecResult;
    import org.gradle.process.ExecSpec;
    import org.gradle.process.JavaExecSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        else -> 2
    }
    
    fun Test.determineMaxFailures() = when {
        project.flakyTestStrategy == FlakyTestStrategy.ONLY -> Integer.MAX_VALUE
        else -> 10
    }
    
    fun configureTests() {
        normalization {
            runtimeClasspath {
                // Ignore the build receipt as it is not relevant for tests and changes between each execution
                ignore("org/gradle/build-receipt.properties")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

    void PrepareLiftingPass::runOnOperation() {
      MLIRContext* ctx = &getContext();
      auto func = getOperation();
    
      // The pattern includes decomposing batch normalization ops, fusing add/mul
      // with a constant operand to a preceding affine operation.
      RewritePatternSet patterns(ctx);
      populateWithGenerated(patterns);
      patterns.add<RemoveIdentity, ConstantFoldQuantizableOperands>(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            where:
            scheduled << [true, false]
        }
    
        String duplicatorTransform(Map options = [:]) {
            def normalization = options.normalization ?: ""
            boolean incremental = options.incremental ?: false
            """
                import java.nio.file.Files
    
                abstract class Duplicator implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                if (project is ProjectWithWork && project.normalizationState != null) {
                    val projectState = gradle.owner.projects.getProject(project.path)
                    projectState.mutableModel.normalization.configureFromCachedState(project.normalizationState)
                }
            }
        }
    
        private
        suspend fun DefaultWriteContext.writeBuildTreeScopedState(gradle: GradleInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            problems.setSource(inputModel);
            List<Profile> activePomProfiles =
                    profileSelector.getActiveProfiles(inputModel.getProfiles(), profileActivationContext, problems);
    
            // model normalization
            problems.setSource(inputModel);
            inputModel = modelNormalizer.mergeDuplicates(inputModel, request, problems);
    
            Map<String, Activation> interpolatedActivations = getProfileActivations(inputModel);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. settings.gradle.kts

        subproject("language-jvm")
        subproject("toolchains-jvm")
        subproject("toolchains-jvm-shared")
        subproject("java-compiler-plugin")
        subproject("java-platform")
        subproject("normalization-java")
        subproject("platform-jvm")
        subproject("plugins-application")
        subproject("plugins-groovy")
        subproject("plugins-java")
        subproject("plugins-java-base")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	// as used by cel.EstimateCost.
    	MessageExpressionMaxCost uint64
    	// NormalizedRuleFieldPath represents the relative fieldPath specified by user after normalization.
    	NormalizedRuleFieldPath string
    }
    
    // EnvLoader delegates the decision of which CEL environment to use for each expression.
    // Callers should return the appropriate CEL environment based on the guidelines from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // based on which Gradle module Jars are part of the distribution.
    val runtimeApiJarName = "gradle-runtime-api-info"
    
    // Ignore the build receipt as it is not relevant for API list and manifest generation
    normalization {
        runtimeClasspath {
            ignore("org/gradle/build-receipt.properties")
        }
    }
    
    // Configurations to define dependencies
    val coreRuntimeOnly by bucket()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder.go

    	} else {
    		connectionManager.CodecType = hcm.HttpConnectionManager_AUTO
    	}
    	connectionManager.AccessLog = []*accesslog.AccessLog{}
    	connectionManager.StatPrefix = httpOpts.statPrefix
    
    	// Setup normalization
    	connectionManager.PathWithEscapedSlashesAction = hcm.HttpConnectionManager_KEEP_UNCHANGED
    	switch lb.push.Mesh.GetPathNormalization().GetNormalization() {
    	case meshconfig.MeshConfig_ProxyPathNormalization_NONE:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top