Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for asFile (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

        lateinit var sourceDirectory: File
    
        @get:OutputFile
        lateinit var reportFile: File
    
        @TaskAction
        fun generateReport() {
            val fileCount = sourceDirectory.listFiles().count { it.isFile }
            val directoryCount = sourceDirectory.listFiles().count { it.isDirectory }
    
            val reportContent = """
                |Report for directory: ${sourceDirectory.absolutePath}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/value.h

                      tensorflow::DataType dtype)
            : tensor_spec({shape, dtype}) {}
        ~Data() {}
        Float32 f32;
        Int64 i64;
        String s;
        Func func;
        // TODO(aselle): look at tensorflow thing
        std::shared_ptr<impl::Dict> dict;
        std::shared_ptr<impl::List> list;
        std::shared_ptr<impl::Tuple> tuple;
        impl::Capsule capsule;
        TaggedValueTensor tensor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            when:
            configurationCacheRun("resolve1", "--write-verification-metadata", "sha256")
    
            then:
            def verificationFile = file("gradle/verification-metadata.xml")
            verificationFile.isFile()
    
            // TODO - get a false cache miss here because the content of the metadata file changes during the previous build
            when:
            configurationCacheRun("resolve1")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            return file.exists();
        }
    
        public static boolean fileIsFile(File file, String consumer) {
            fileSystemEntryObserved(file, consumer);
            return file.isFile();
        }
    
        public static boolean fileIsDirectory(File file, String consumer) {
            fileSystemEntryObserved(file, consumer);
            return file.isDirectory();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      L2_NORMALIZATION = 11,
      L2_POOL_2D = 12,
      LOCAL_RESPONSE_NORMALIZATION = 13,
      LOGISTIC = 14,
      LSH_PROJECTION = 15,
      LSTM = 16,
      MAX_POOL_2D = 17,
      MUL = 18,
      RELU = 19,
      // NOTE(aselle): RELU_N1_TO_1 used to be called RELU1, but it was renamed
      // since different model developers use RELU1 in different ways. Never
      // create another op called RELU1.
      RELU_N1_TO_1 = 20,
      RELU6 = 21,
      RESHAPE = 22,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        }
    
        private boolean existsPage(final String path) {
            final String realPath = LaServletContextUtil.getServletContext().getRealPath(path);
            final File file = new File(realPath);
            return file.isFile();
        }
    
        public String createCacheContent(final Map<String, Object> doc, final String[] queries) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                }
            """
            def generatedHeader = file("build/generated/sources/headers/java/main/my_org_Foo.h")
    
            when:
            succeeds "compileJava"
            then:
            generatedHeader.isFile()
    
            when:
            header.delete()
            succeeds "compileJava"
    
            then:
            !generatedHeader.exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema.fbs

      L2_NORMALIZATION = 11,
      L2_POOL_2D = 12,
      LOCAL_RESPONSE_NORMALIZATION = 13,
      LOGISTIC = 14,
      LSH_PROJECTION = 15,
      LSTM = 16,
      MAX_POOL_2D = 17,
      MUL = 18,
      RELU = 19,
      // NOTE(aselle): RELU_N1_TO_1 used to be called RELU1, but it was renamed
      // since different model developers use RELU1 in different ways. Never
      // create another op called RELU1.
      RELU_N1_TO_1 = 20,
      RELU6 = 21,
      RESHAPE = 22,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top