Displaying 10 results from an estimated 10 matches for "set_attribute".
2004 Nov 22
3
Mode context extremely poor performance.
...dex SNAP.CTX_PROFIL_MATCH_${ROLE}_${SEX}_01
on SNAP.vwmt_PROFIL_match_${ROLE}_${SEX} (RECH_CRITERES)
indextype is ctxsys.context PARAMETERS ('MEMORY 50M STORAGE
text_storage')
/
with:
-----
BEGIN ctx_ddl.create_preference('SYS.TEXT_STORAGE',
'BASIC_STORAGE'); ctx_ddl.set_attribute('SYS.TEXT_STORAGE',
'I_INDEX_CLAUSE',
'pctfree 0 tablespace TBS_SNAP_INDEX');
ctx_ddl.set_attribute('SYS.TEXT_STORAGE', 'I_ROWID_INDEX_CLAUSE',
'pctfree 0 tablespace TBS_SNAP_INDEX');
ctx_ddl.set_attribute('SYS.TEXT_STORAGE', '...
2004 Nov 22
3
Mode context extremely poor performance.
...dex SNAP.CTX_PROFIL_MATCH_${ROLE}_${SEX}_01
on SNAP.vwmt_PROFIL_match_${ROLE}_${SEX} (RECH_CRITERES)
indextype is ctxsys.context PARAMETERS ('MEMORY 50M STORAGE
text_storage')
/
with:
-----
BEGIN ctx_ddl.create_preference('SYS.TEXT_STORAGE',
'BASIC_STORAGE'); ctx_ddl.set_attribute('SYS.TEXT_STORAGE',
'I_INDEX_CLAUSE',
'pctfree 0 tablespace TBS_SNAP_INDEX');
ctx_ddl.set_attribute('SYS.TEXT_STORAGE', 'I_ROWID_INDEX_CLAUSE',
'pctfree 0 tablespace TBS_SNAP_INDEX');
ctx_ddl.set_attribute('SYS.TEXT_STORAGE', '...
2010 Mar 02
9
"Dos installer" from Win98se
...tes available on disk
8,192 bytes in each allocation unit.
61,803 allocation units available on disk.
Volume Serial Number is 1640-0F01
C:\WINDOWS>
C:\WINDOWS>cd c:\
C:\>syslinux -sma -d syslinux o:
...
...
read_device(15,00002fa4,1,0)
Trying unlock 0001... ok 0001
set_attributes("O:\ldlinux.sys", 0x00)
creat("O:\ldlinux.sys", 0x0)
close(5)
set_attributes("O:\ldlinux.sys", 0x07)
Trying lock 020f... ok 440d
read_device(15,00003518,1,0)
read_device(15,00003738,1,485)
read_device(15,00003958,1,1)
set_attributes("O:\ldlinux.sys", 0x00)
r...
2005 Dec 30
5
AWS api_method :returns not accepting ActiveRecord::Base
I''m trying to use the feature of AWS where it will take an object derived
from ActiveRecord::Base instead of an AWS::Struct object. Whenever I try
it, though, I get the craziest error:
NoMethodError: You have a nil object when you didn''t expect it!
The error occured while evaluating nil.new
/usr/lib/.../actionwebservice/lib/action_web_service/casting.rb:105:in
2012 Aug 02
0
[PATCH 1/3] ALPHA: make sector size dynamic in extlinux
...ibinstaller/syslxcom.c
index 57f13cd..95a7110 100644
--- a/libinstaller/syslxcom.c
+++ b/libinstaller/syslxcom.c
@@ -45,8 +45,6 @@ int fs_type;
# define dprintf(...) ((void)0)
#endif
-#define SECTOR_SHIFT 9
-
static void die(const char *msg)
{
fputs(msg, stderr);
@@ -176,7 +174,7 @@ void set_attributes(int fd)
}
/* New FIEMAP based mapping */
-static int sectmap_fie(int fd, sector_t *sectors, int nsectors)
+static int sectmap_fie(int fd, sector_t *sectors, int nsectors, unsigned sector_size)
{
struct fiemap *fm;
struct fiemap_extent *fe;
@@ -193,7 +191,7 @@ static int sectmap_fie(...
2011 Apr 15
0
[GIT PULL] syslinux command-line
...TLINUX",
8);
+}
diff --git a/libinstaller/syslxcom.h b/libinstaller/syslxcom.h
index 39ca09d..bf186ca 100644
--- a/libinstaller/syslxcom.h
+++ b/libinstaller/syslxcom.h
@@ -18,5 +18,6 @@ ssize_t xpwrite(int fd, const void *buf, size_t count,
off_t offset);
void clear_attributes(int fd);
void set_attributes(int fd);
int sectmap(int fd, sector_t *sectors, int nsectors);
+int syslinux_already_installed(int dev_fd);
#endif
diff --git a/linux/syslinux.c b/linux/syslinux.c
index 97b6a30..c7a9ecc 100755
--- a/linux/syslinux.c
+++ b/linux/syslinux.c
@@ -382,6 +382,10 @@ int main(int argc, char *argv[])...
2012 Nov 27
0
Syslinux-5.00-pre11
...k. The XFS filesystem code
from Paulo also got merged this time and there were a bunch of fixes
from a Coverity report.
This won't be the last prerelease, but we are nearing the end of the
5.00 release cycle, so please do test.
Shortlog append below.
---
Chen Baozi (14):
extlinux: put set_attributes() back to ext2_fat_install_file().
Fix the calculation of the block of the root of the inode B+tree.
Add support for 64-bit filesystem compatible struct inode.
xfs: rework the logic of xfs_get_ino_core()
xfs: Implement dir2_block_find_entry() function.
xfs: Implement...
2015 Nov 13
4
[PATCH 1/4] extlinux: simplification
Merge installation of ldlinux.c32 from ext2_fat_install_file,
btrfs_install_file and xfs_install_file into one function
ext_install_ldlinux_c32
Signed-off-by: Nicolas Cornu <nicolac76 at yahoo.fr>
---
extlinux/main.c | 106 +++++++++++++++++++++-----------------------------------
1 file changed, 40 insertions(+), 66 deletions(-)
diff --git a/extlinux/main.c b/extlinux/main.c
index
2012 Sep 10
19
Initial support for sector size >512
This set of patches add some support for sector size >512.
Currently it fixes extlinux, MBR for GPT and ext partitions.
Other code is unaffected.
This set of patches has been tested on a read Dell machine running a beta
firmware.
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...tch changes up to 75cf6cebf0ffdf75f359528b01fc9039062e7b34:
xfs: Fix the way we check di_mode of an inode (2012-09-02 20:07:20 -0300)
Signed-off-by: Paulo Alcantara <pcacjr at zytor.com>
----------------------------------------------------------------
Chen Baozi (14):
extlinux: put set_attributes() back to ext2_fat_install_file().
Fix the calculation of the block of the root of the inode B+tree.
Add support for 64-bit filesystem compatible struct inode.
xfs: rework the logic of xfs_get_ino_core()
xfs: Implement dir2_block_find_entry() function.
xfs: Implement...