Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for file_extension (0.31 sec)

  1. hack/boilerplate/boilerplate.py

            return False
    
        # determine if the file is automatically generated
        generated = is_generated_file(data, regexs)
    
        basename = os.path.basename(filename)
        extension = file_extension(filename)
        if generated:
            if extension == "go":
                extension = "generatego"
    
        if extension != "":
            ref = refs[extension]
        else:
            ref = refs[basename]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    // Version 3: Move buffer data from Model.Subgraph.Tensors to Model.Buffers.
    
    namespace tflite;
    
    // This corresponds to the version.
    file_identifier "TFL3";
    // File extension of any written files.
    file_extension "tflite";
    
    // IMPORTANT: All new members of tables, enums and unions must be added at the
    // end to ensure backwards compatibility.
    
    // The type of data stored in a tensor.
    enum TensorType : byte {
      FLOAT32 = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    //             version 3 and 3a.
    
    namespace tflite;
    
    // This corresponds to the version.
    file_identifier "TFL3";
    // File extension of any written files.
    file_extension "tflite";
    
    // IMPORTANT: All new members of tables, enums and unions must be added at the
    // end to ensure backwards compatibility.
    
    // The type of data stored in a tensor.
    enum TensorType : byte {
      FLOAT32 = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema.fbs

    //             3b.
    
    namespace tflite;
    
    // This corresponds to the version.
    file_identifier "TFL3";
    // File extension of any written files.
    file_extension "tflite";
    
    // IMPORTANT: All new members of tables, enums and unions must be added at the
    // end to ensure backwards compatibility.
    
    // The type of data stored in a tensor.
    enum TensorType : byte {
      FLOAT32 = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/FileNameDerivingClassNameConverter.java

            if (!classNames.isEmpty()) {
                return classNames;
            }
    
            for (String fileExtension : fileExtensions) {
                if (sourceFileRelativePath.endsWith(fileExtension)) {
                    return Collections.singleton(StringUtils.removeEnd(sourceFileRelativePath.replace('/', '.'), fileExtension));
                }
            }
    
            return Collections.emptySet();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

            final List<String> fileExtensions = CollectionUtils.collect(spec.getGroovyCompileOptions().getFileExtensions(), extension -> '.' + extension);
            Iterable<File> filtered = Iterables.filter(spec.getSourceFiles(), new Predicate<File>() {
                @Override
                public boolean apply(File element) {
                    for (String fileExtension : fileExtensions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

            then:
            archive(file("build/test.${fileExtension}")).content('test.txt') == "from dir2"
    
            where:
            taskName << ['zip', 'tar']
            taskType = taskName.capitalize()
            fileExtension = taskName
        }
    
        def "#taskName can fail for duplicate entries"() {
            given:
            duplicateEntriesInArchive(taskName, taskType, fileExtension)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/BuildInitDsl.java

    import java.util.List;
    
    public enum BuildInitDsl implements WithIdentifier {
    
        KOTLIN(".gradle.kts"),
        GROOVY(".gradle");
    
        private final String fileExtension;
    
        BuildInitDsl(String fileExtension) {
            this.fileExtension = fileExtension;
        }
    
        public static BuildInitDsl fromName(@Nullable String name) {
            if (name == null) {
                return KOTLIN;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/PrecompiledGroovyScript.java

            private final Class<?> targetClass;
            private final String fileExtension;
    
            Type(Class<?> targetClass, String fileExtension) {
                this.targetClass = targetClass;
                this.fileExtension = fileExtension;
            }
    
            static Type getType(String fileName) {
                if (fileName.endsWith(SETTINGS.fileExtension)) {
                    return SETTINGS;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/plugins/AbstractPluginBuildIntegrationTest.groovy

                this.settingsPluginId = "${buildName}.settings-plugin"
                this.projectPluginId = "${buildName}.project-plugin"
                this.settingsFile = file("$buildName/settings${fileExtension}")
                this.buildFile = file("$buildName/build${fileExtension}")
    
                settingsFile << """
                    rootProject.name = "$buildName"
                """
                buildFile << """
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 08:28:10 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top