Home
last modified time | relevance | path

Searched refs:link_exists (Results 1 – 25 of 55) sorted by relevance

123

/dports/science/hdf5/hdf5-1.10.6/java/test/
H A DTestH5Lcreate.java99 boolean link_exists = false; in _createHardLink()
103 link_exists = H5.H5Lexists(did, dstname, lapl); in _createHardLink()
109 assertTrue("TestH5L._createHardLink ", link_exists); in _createHardLink()
113 boolean link_exists = false; in _createSoftLink()
117 link_exists = H5.H5Lexists(did, dstname, lapl); in _createSoftLink()
123 assertTrue("TestH5L._createSoftLink ", link_exists); in _createSoftLink()
127 boolean link_exists = false; in _createExternalLink()
131 link_exists = H5.H5Lexists(did, dstname, lapl); in _createExternalLink()
137 assertTrue("TestH5L._createExternalLink ", link_exists); in _createExternalLink()
469 assertTrue("testH5Lcopy:H5Lexists ", link_exists); in testH5Lcopy()
[all …]
H A DTestH5Ocreate.java99 boolean link_exists = false; in _createHardLink()
103 link_exists = H5.H5Lexists(did, dstname, lapl); in _createHardLink()
109 assertTrue("TestH5O._createHardLink ", link_exists); in _createHardLink()
113 boolean link_exists = false; in _createSoftLink()
117 link_exists = H5.H5Lexists(did, dstname, lapl); in _createSoftLink()
123 assertTrue("TestH5O._createSoftLink ", link_exists); in _createSoftLink()
127 boolean link_exists = false; in _createExternalLink()
131 link_exists = H5.H5Lexists(did, dstname, lapl); in _createExternalLink()
137 assertTrue("TestH5O._createExternalLink ", link_exists); in _createExternalLink()
197 boolean link_exists = H5.H5Lexists(H5fid, "CPY1", HDF5Constants.H5P_DEFAULT); in testH5Ocopy()
[all …]
H A DTestH5Lbasic.java66 boolean link_exists = false; in testH5Lexists()
68 link_exists = H5.H5Lexists(H5fid, "None", HDF5Constants.H5P_DEFAULT); in testH5Lexists()
74 assertFalse("H5Lexists ",link_exists); in testH5Lexists()
76 link_exists = H5.H5Lexists(H5fid, "DS1", HDF5Constants.H5P_DEFAULT); in testH5Lexists()
82 assertTrue("H5Lexists ",link_exists); in testH5Lexists()
84 link_exists = H5.H5Lexists(H5fid, "G1/DS2", HDF5Constants.H5P_DEFAULT); in testH5Lexists()
90 assertTrue("H5Lexists ",link_exists); in testH5Lexists()
/dports/sysutils/R-cran-fs/fs/tests/testthat/
H A Dtest-access.R72 expect_equal(link_exists("loo"), c(loo = TRUE))
73 expect_equal(link_exists("missing"), c(missing = FALSE))
75 link_exists(c("foo", "missing", "foo/bar", "loo")),
79 expect_identical(link_exists(NA_character_), structure(names = NA, FALSE))
H A Dtest-copy.R74 expect_true(link_exists("loo"))
77 expect_true(link_exists("loo2"))
154 expect_true(link_exists("foo2/.qux"))
163 expect_true(link_exists("foo2/foo"))
/dports/science/hdf5-18/hdf5-1.8.21/fortran/test/
H A DtH5O.f9097 LOGICAL :: link_exists local
406 CALL h5oexists_by_name_f(file_id,"/G1_LINK", link_exists, error)
410 IF(.NOT.link_exists)THEN
420 IF(.NOT.link_exists)THEN
426 CALL h5oexists_by_name_f(file_id,chr_lg, link_exists, error, H5P_DEFAULT_F)
430 IF(.NOT.link_exists)THEN
440 IF(.NOT.link_exists)THEN
445 CALL h5oexists_by_name_f(file_id,"/G1_FALSE", link_exists, error)
449 IF(link_exists)THEN
468 CALL h5oexists_by_name_f(file_id,"/G1_LINK", link_exists, error, plist)
[all …]
/dports/science/hdf5/hdf5-1.10.6/fortran/test/
H A DtH5O.F9096 LOGICAL :: link_exists local
405 CALL h5oexists_by_name_f(file_id,"/G1_LINK", link_exists, error)
409 IF(.NOT.link_exists)THEN
419 IF(.NOT.link_exists)THEN
425 CALL h5oexists_by_name_f(file_id,chr_lg, link_exists, error, H5P_DEFAULT_F)
429 IF(.NOT.link_exists)THEN
439 IF(.NOT.link_exists)THEN
444 CALL h5oexists_by_name_f(file_id,"/G1_FALSE", link_exists, error)
448 IF(link_exists)THEN
467 CALL h5oexists_by_name_f(file_id,"/G1_LINK", link_exists, error, plist)
[all …]
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/integration/targets/test_files/tasks/
H A Dmain.yml35 - name: Assert link_exists tests work
38 - "'link_to_nonexistent_file' is link_exists"
39 - "'does_not_exist' is not link_exists"
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/integration/targets/test_files/tasks/
H A Dmain.yml35 - name: Assert link_exists tests work
38 - "'link_to_nonexistent_file' is link_exists"
39 - "'does_not_exist' is not link_exists"
/dports/sysutils/R-cran-fs/fs/man/
H A Dfile_access.Rd7 \alias{link_exists}
16 link_exists(path)
29 \code{dir_exists(path)} and \code{link_exists(path)} are similar but also check that
H A Ddelete.Rd43 link_exists("link")
56 link_exists("link")
61 link_exists("link")
H A Dis_file.Rd49 …s()}}, \code{\link[=dir_exists]{dir_exists()}} and \code{\link[=link_exists]{link_exists()}} if yo…
/dports/net-mgmt/librenms/librenms-21.5.1/includes/discovery/
H A Ddiscovery-protocols.inc.php6 global $link_exists;
350 d_echo($link_exists);
359 if (! $link_exists[$local_port_id][$remote_hostname][$remote_port]) {
372 $link_exists,
/dports/science/hdf5-18/hdf5-1.8.21/fortran/src/
H A DH5Off.f90384 SUBROUTINE h5oexists_by_name_f(loc_id, name, link_exists, hdferr, lapl_id) argument
388 LOGICAL , INTENT(OUT) :: link_exists local
419 link_exists = .FALSE.
421 link_exists = .TRUE.
H A DH5Lff.f90520 SUBROUTINE h5lexists_f(loc_id, name, link_exists, hdferr, lapl_id) argument
524 LOGICAL, INTENT(OUT) :: link_exists ! .TRUE. if exists, .FALSE. otherwise local
557 link_exists = .FALSE.
558 IF(link_exists_c.GT.0) link_exists = .TRUE.
H A DH5Lf.c398 nh5lexists_c (hid_t_f *loc_id, _fcd name, size_t_f *namelen, hid_t_f *lapl_id, int_f *link_exists) in nh5lexists_c() argument
413 if((*link_exists = (int_f)H5Lexists((hid_t)*loc_id, c_name, (hid_t)*lapl_id)) < 0) in nh5lexists_c()
/dports/sysutils/R-cran-fs/fs/R/
H A Daccess.R54 link_exists <- function(path) { function
H A Dcopy.R108 to_delete <- isTRUE(overwrite) & link_exists(new)
/dports/science/hdf5/hdf5-1.10.6/test/
H A Dgenall5.c484 htri_t link_exists; in vrfy_ns_grp_c() local
487 link_exists = H5Lexists(gid, linkname, H5P_DEFAULT); in vrfy_ns_grp_c()
489 if (link_exists < 0) { in vrfy_ns_grp_c()
493 HDassert(link_exists >= 0); in vrfy_ns_grp_c()
893 htri_t link_exists; in vrfy_ns_grp_d() local
896 link_exists = H5Lexists(gid, linkname, H5P_DEFAULT); in vrfy_ns_grp_d()
898 if (link_exists < 0) { in vrfy_ns_grp_d()
902 HDassert(link_exists >= 0); in vrfy_ns_grp_d()
1491 htri_t link_exists; in vrfy_os_grp_n() local
1496 if (link_exists < 0) { in vrfy_os_grp_n()
[all …]
/dports/science/hdf5/hdf5-1.10.6/fortran/src/
H A DH5Lff.F90542 SUBROUTINE h5lexists_f(loc_id, name, link_exists, hdferr, lapl_id) argument
546 LOGICAL, INTENT(OUT) :: link_exists ! .TRUE. if exists, .FALSE. otherwise local
578 link_exists = .FALSE.
579 IF(link_exists_c.GT.0) link_exists = .TRUE.
H A DH5Off.F90466 SUBROUTINE h5oexists_by_name_f(loc_id, name, link_exists, hdferr, lapl_id) argument
470 LOGICAL , INTENT(OUT) :: link_exists local
500 link_exists = .FALSE.
502 link_exists = .TRUE.
/dports/devel/cmake-doc/cmake-3.22.1/Modules/AndroidTestUtilities/
H A DPushToAndroidDevice.cmake92 check_device_file_exists(${link_origin} link_exists)
93 if(link_exists)
/dports/devel/cmake-gui/cmake-3.22.1/Modules/AndroidTestUtilities/
H A DPushToAndroidDevice.cmake92 check_device_file_exists(${link_origin} link_exists)
93 if(link_exists)
/dports/devel/cmake/cmake-3.22.1/Modules/AndroidTestUtilities/
H A DPushToAndroidDevice.cmake92 check_device_file_exists(${link_origin} link_exists)
93 if(link_exists)
/dports/sysutils/R-cran-fs/fs/
H A DNAMESPACE78 export(link_exists)

123