Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 232 for normalization (0.26 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.FieldVisitor;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.ModuleVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            config.description("is annotated with @${config.annotatedWith} but missing a normalization strategy")
                .reason("If you don't declare the normalization, outputs can't be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly")
                .solution("Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  3. tests/integration/security/normalization_test.go

    					},
    				},
    			}
    			for _, tt := range cases {
    				t.NewSubTest(tt.name).Run(func(t framework.TestContext) {
    					istio.GetOrFail(t, t).PatchMeshConfigOrFail(t, t, fmt.Sprintf(`
    pathNormalization:
      normalization: %v`, tt.ntype.String()))
    
    					newTrafficTest(t, apps.Ns1.All.Instances()).
    						FromMatch(match.ServiceName(apps.Ns1.A.NamespacedName())).
    						Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

        std::optional<const absl::string_view> mlir_dump_file_prefix) {
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
      // Add PrepareLiftingPass to utilize its functionalities like folding batch
      // normalization ops and removing training related ops.
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::quant::CreatePrepareLiftingPass(quantization_options.op_set()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            then:
            installations.size() == 1
            installations[0].location == jre
            installations[0].source == "testSource"
        }
    
        def "skip path normalization on non-osx systems"() {
            given:
            def jdkHome = temporaryFolder.createDir("jdk")
            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.LINUX.getExecutableName("java"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/iter.go

    package norm
    
    import (
    	"fmt"
    	"unicode/utf8"
    )
    
    // MaxSegmentSize is the maximum size of a byte buffer needed to consider any
    // sequence of starter and non-starter runes for the purpose of normalization.
    const MaxSegmentSize = maxByteBufferSize
    
    // An Iter iterates over a string or byte slice, while normalizing it
    // to a given Form.
    type Iter struct {
    	rb     reorderBuffer
    	buf    [maxByteBufferSize]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.normalization
    
    import org.gradle.kotlin.dsl.fixtures.TestWithTempFiles
    import org.gradle.kotlin.dsl.support.KotlinCompilerOptions
    import org.gradle.kotlin.dsl.support.compileToDirectory
    import org.gradle.kotlin.dsl.support.loggerFor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. build.gradle.kts

        doLast {
          for (configuration in configurations) {
            if (configuration.isCanBeResolved) {
              configuration.files
            }
          }
        }
      }
    
      normalization {
        runtimeClasspath {
          metaInf {
            ignoreAttribute("Bnd-LastModified")
          }
        }
      }
    }
    
    /** Configure building for Java+Kotlin projects. */
    subprojects {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectInternal.java

    import org.gradle.internal.service.scopes.ServiceRegistryFactory;
    import org.gradle.model.internal.registry.ModelRegistry;
    import org.gradle.model.internal.registry.ModelRegistryScope;
    import org.gradle.normalization.internal.InputNormalizationHandlerInternal;
    import org.gradle.util.Path;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.Map;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

     * </p>
     *
     * <p>
     * The order of the entries in the classpath matters, paths do not matter for the entries.
     * For the resources in each classpath entry, normalization takes the relative path of the resource and possibly normalizes its contents.
     * </p>
     */
    public class ClasspathFingerprintingStrategy extends AbstractFingerprintingStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top