Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FileExists (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/FileProfileActivator.java

                return false;
            }
    
            File f = new File(path);
    
            if (!f.isAbsolute()) {
                return false;
            }
    
            boolean fileExists = f.exists();
    
            return missing != fileExists;
        }
    
        @Override
        public boolean presentInConfig(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. Jenkinsfile

    } finally {
        // notify completion
        stage("Notifications") {
            jenkinsNotify()
        }
    }
    
    def archiveDirs(stageId, archives) {
        archives.each { archivePrefix, pathToContent ->
            if (fileExists(pathToContent)) {
                zip(zipFile: "${archivePrefix}-${stageId}.zip", dir: pathToContent, archive: true)
            }
        }
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  3. Jenkinsfile.s390x

    } catch (Throwable e) {
        echo "[FAILURE-001] ${e}"
        currentBuild.result = "FAILURE"
        throw e
    }
    
    def archiveDirs(stageId, archives) {
        archives.each { archivePrefix, pathToContent ->
            if (fileExists(pathToContent)) {
                zip(zipFile: "${archivePrefix}-${stageId}.zip", dir: pathToContent, archive: true)
            }
        }
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem.h

      Status NewReadOnlyMemoryRegionFromFile(
          const std::string& fname, TransactionToken* token,
          std::unique_ptr<ReadOnlyMemoryRegion>* result) override;
      Status FileExists(const std::string& fname, TransactionToken* token) override;
      bool FilesExist(const std::vector<std::string>& files,
                      TransactionToken* token,
                      std::vector<Status>* status) override;
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
Back to top