Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 440 for file_name (0.21 sec)

  1. ci/official/requirements_updater/updater_config_repository.bzl

     Can be set via build parameter "--repo_env=<VARIABLE_NAME>=<value>"
     e.g "--repo_env=REQUIREMENTS_FILE_NAME=requirements.in"
    
     List of variables:
     REQUIREMENTS_FILE_NAME
    '''
    
    def _updater_config_repository_impl(repository_ctx):
        repository_ctx.file("BUILD", "")
        requirements_file_name = repository_ctx.os.environ.get("REQUIREMENTS_FILE_NAME", "requirements.in")
        repository_ctx.file(
            "updater_config_repository.bzl",
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 31 18:17:57 GMT 2023
    - 718 bytes
    - Viewed (0)
  2. ci/official/requirements_updater/BUILD.bazel

    load("@python//3.9:defs.bzl", compile_pip_requirements_3_9 = "compile_pip_requirements")
    load("@updater_config_repository//:updater_config_repository.bzl", "REQUIREMENTS_FILE_NAME")
    
    compile_pip_requirements_3_9(
        name = "requirements_3_9",
        extra_args = ["--allow-unsafe"],
        requirements_in = REQUIREMENTS_FILE_NAME,
        requirements_txt = "requirements_lock_3_9.txt",
    )
    
    compile_pip_requirements_3_10(
        name = "requirements_3_10",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 3K bytes
    - Viewed (2)
  3. tensorflow/c/c_test.c

        return 1;
      }
    
      char file_name[100];
      time_t t = time(NULL);
      snprintf(file_name, sizeof(file_name), "test-%d-%ld.txt", getpid(), t);
    
      size_t length = 2 + strlen(path) + strlen(file_name);
      char* full_path = malloc(length);
      snprintf(full_path, length, "%s/%s", path, file_name);
    
      TF_WritableFileHandle* h;
      TF_Status* status = TF_NewStatus();
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Jan 15 17:51:26 GMT 2020
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.cc

    #include <stdio.h>
    
    #include <fstream>
    #include <string>
    #include <utility>
    
    TempFile::TempFile(const std::string& temp_file_name, std::ios::openmode mode)
        : std::fstream(temp_file_name, mode), name_(temp_file_name) {}
    
    TempFile::TempFile(TempFile&& rhs)
        : std::fstream(std::move(rhs)), name_(std::move(rhs.name_)) {}
    
    TempFile::~TempFile() {
      std::fstream::close();
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jun 26 14:56:58 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/WatchTest.java

        public void testWatchCreate () throws CIFSException, MalformedURLException, UnknownHostException, InterruptedException, ExecutionException {
            try ( SmbWatchHandle w = this.base.watch(FileNotifyInformation.FILE_NOTIFY_CHANGE_FILE_NAME, false) ) {
                setupWatch(w);
                try ( SmbResource cr = new SmbFile(this.base, "created") ) {
                    cr.createNewFile();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  6. ci/official/requirements_updater/README.md

    By default, the name of the base requirements file is `requirements.in`, but it
    can be set using the `REQUIREMENTS_FILE_NAME` variable. \
    For example:
    
    ```
    export REQUIREMENTS_FILE_NAME=my_requirements.in
    ```
    
    To specify the file via a Bazel command argument, use the following:
    
    ```
    --repo_env=REQUIREMENTS_FILE_NAME=my_requirements.in
    ```
    
    ### How to run the updater
    
    ```
    bash updater.sh
    ```
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

      auto gcs_file = static_cast<GCSFile*>(filesystem->plugin_filesystem);
      char* temp_file_name_c_str = TF_GetTempFileName("");
      std::string temp_file_name(temp_file_name_c_str);  // To prevent memory-leak
      free(temp_file_name_c_str);
    
      if (!gcs_file->compose) {
        auto gcs_status =
            gcs_file->gcs_client.DownloadToFile(bucket, object, temp_file_name);
        TF_SetStatusFromGCSStatus(gcs_status, status);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/FileNotifyInformation.java

         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x00000001;
    
        /**
         * Any directory-name change in the watched directory or subtree causes a change notification wait operation to
         * return. Changes include creating or deleting a directory.
         */
        public static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002;
    
        /**
         * Both <tt>FILE_NOTIFY_CHANGE_FILE_NAME</tt> and <tt>FILE_NOTIFY_CHANGE_DIR_NAME</tt>
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_ru.properties

    errors.invalid_design_jsp_file_name=Invalid JSP file.
    errors.design_jsp_file_does_not_exist=JSP file does not exist.
    errors.design_file_name_is_not_found=The file name is not specified.
    errors.failed_to_write_design_image_file=Failed to upload an image file.
    errors.failed_to_update_jsp_file=Failed to update a jsp file.
    errors.design_file_name_is_invalid=The file name is invalid.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_de.properties

    errors.invalid_design_jsp_file_name=Ungültige JSP-Datei.
    errors.design_jsp_file_does_not_exist=JSP-Datei existiert nicht.
    errors.design_file_name_is_not_found=Der Dateiname ist nicht angegeben.
    errors.failed_to_write_design_image_file=Upload einer Bilddatei fehlgeschlagen.
    errors.failed_to_update_jsp_file=Aktualisierung einer JSP-Datei fehlgeschlagen.
    errors.design_file_name_is_invalid=Der Dateiname ist ungültig.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Oct 29 15:01:03 GMT 2019
    - 11.8K bytes
    - Viewed (0)
Back to top