Displaying 13 results from an estimated 13 matches for "b103".
Did you mean:
103
2010 May 14
1
S4 default/missing args
...ot;, con="missing"),
definition= function(x, con=getOption("TSconnection"), ...){
if(is.null(con))
stop("con should be specified or set with
options(TSconnection=con).")
else return('ok')} )
Then when I try
TSdoc("B103")
In my original problem I got
Error in is.null(con) : 'con' is missing
And in the simplified example I get
Error in TSdoc("B103") :
element 1 is empty;
the part of the args list of 'is.null' being evaluated was:
(con)
I'm not sure wh...
2018 Apr 27
1
Re: [PATCH v5 2/3] daemon: list-filesystems: Don't list partitions which cannot hold file system.
...1714A69AD" -> Optgroups.ldm_available ()
Why does the result depend on Optgroups.ldm_available ()?
> + (* Microsoft Reserved Partition. *)
> + | "E3C9E316-0B5C-4DB8-817D-F92DF00215AE" -> true
> + (* Windows Snapshot Partition. *)
> + | "CADDEBF1-4400-4DE8-B103-12117DCF3CCF" -> true
You can combine the right hand sides of multiple matches, which helps
the pattern match optimizer in the compiler, eg:
(* Microsoft Reserved Partition. *)
| "E3C9E316-0B5C-4DB8-817D-F92DF00215AE"
(* Windows Snapshot Partition. *)
| "CADDEBF1-44...
2018 Apr 27
4
[PATCH v5 0/3] libguestfs: guestfs_list_filesystems: skip block devices which cannot hold file system
This patch series:
1. Addresses comments from last review:
part_get_mbr_part_type doesn't break original implementation in C.
2. Rebased on top of master and little bit refactored for readability.
Mykola Ivanets (1):
tests: md: Test guestfish list-filesystems command skips partitioned
md devices.
Nikolay Ivanets (2):
daemon: Reimplement 'part_get_mbr_part_type' API in
2018 Apr 27
0
[PATCH v5 2/3] daemon: list-filesystems: Don't list partitions which cannot hold file system.
...(just as partitioned physical devices are filtered out).
2. Extended MBR partitions.
3. LDM Partitions (MBR and GPT partitions used by Windows Logical Disk Manager).
4. Microsoft Reserved Partitions (GUID E3C9E316-0B5C-4DB8-817D-F92DF00215AE).
5. Windows Snapshot Partitions (GUID CADDEBF1-4400-4DE8-B103-12117DCF3CCF).
---
daemon/listfs.ml | 130 +++++++++++++++++++++++++++++------------------
1 file changed, 81 insertions(+), 49 deletions(-)
diff --git a/daemon/listfs.ml b/daemon/listfs.ml
index 56ebadeda..5499bacb2 100644
--- a/daemon/listfs.ml
+++ b/daemon/listfs.ml
@@ -25,39 +25,18 @@ let rec...
2018 May 02
6
[PATCH v7 0/6] daemon: list_filesystems: filter out block devices which cannot hold filesystem.
This patch series addresses comments after v6 series review.
Mykola Ivanets (6):
daemon: Changing the way that we detect if a device contains
partitions.
daemon: list-filesystems: Ignore partitioned MD devices.
tests: list-filesystems command ignores partitioned MD devices.
daemon: list-filesystems: Change the way we filter out LDM partitions.
daemon: list-filesystems: Filter out
2018 May 01
9
[PATCH v6 0/7] daemon: list_filesystems: filter out block devices which cannot hold filesystem
This patch series:
1. Addresses comments from v5 series review
2. Large commit is splitted to more granular commits for better code review.
Mykola Ivanets (6):
daemon: Changing the way that we detect if a device contains
partitions.
daemon: list-filesystems: Ignore partitioned MD devices.
tests: list-filesystems command ignores partitioned MD devices.
daemon: list-filesystems: Change
2018 Jun 01
7
[PATCH v8 0/6] daemon: list_filesystems: filter out block devices which cannot hold filesystem.
v8: - Rebased on top of master.
v7: - Addresses comments after v6 series review.
v6: - Addresses comments after v5 series review.
- Large commit is splitted to more granular commits for better code review.
v5: - Addresses comments after v4 series review (part_get_mbr_part_type doesn't break original implementation in C).
- Rebased on top of master and little bit refactored for
2003 Apr 10
2
exited non-zero
...=> 101,2,WaitMusicOnHold,15
exten => 101,3,Voicemail,u101
exten => 101,102,Voicemail,b101
exten => 102,1,Dial,Zap/2|20|m
exten => 102,2,Voicemail,u102
exten => 102,102,Voicemail,b102
exten => 103,1,Dial,Zap/2|20|m
exten => 103,2,Voicemail,u103
exten => 103,102,Voicemail,b103
exten => 8500,1,VoicemailMain
exten => i,1,Playback,pbx-invalid
exten => t,1,Playback,demo-thanks
exten => t,2,Hangup
include => extensions
[sales]
exten => s,1,Background(welcome)
exten => 1,1,Goto(default,101,1)
[finance]
exten => s,1,Background(welcome)
exten =>...
2018 May 01
0
[PATCH v6 7/7] daemon: list-ilesystems: Filter out MBR extended partitions.
...is_partition_can_hold_filesystem partition =
let device = Devsparts.part_to_dev partition in
@@ -106,10 +106,17 @@ and is_partition_can_hold_filesystem partition =
| "E3C9E316-0B5C-4DB8-817D-F92DF00215AE"
(* Windows Snapshot Partition. *)
| "CADDEBF1-4400-4DE8-B103-12117DCF3CCF" -> false
- | _ -> true
+ | _ -> not (is_mbr_extended parttype device partnum)
)
else true
+and is_mbr_extended parttype device partnum =
+ if parttype = "msdos" then (
+ let mbr_type = Parted.part_get_mbr_part_type device partnum in
+ mbr_t...
2007 Apr 10
6
Help w/ Asterisk Cisco IP phone and SCCP
...; Software phone
exten => 101,1,Dial(SIP/test-softphone,,r)
exten => 102,1,Dial(SIP/bob,20)
exten => 102,2,Voicemail(u102)
exten => 102,102,Voicemail(b102)
exten => 102,103,Hangup()
exten => 103,1,Dial(SIP/bill,20)
exten => 103,2,Voicemail(u103)
exten => 103,102,Voicemail(b103)
exten => 103,103,Hangup()
exten => 104,Dial(SCCP/SEP00036BC3852B,20)
exten => 104,2,Voicemail(u104)
exten => 104,102,Voicemail(b104)
exten => 104,103,Hangup()
exten => 105,Dial(SCCP/SEP00036B095612,20)
exten => 105,2,Voicemail(u105)
exten => 105,102,Voicemail(b105)
exten...
2005 Jul 27
0
Please, I looking for halp!
...: 54d0 4934 aa11 3312 aeb4 62e2 9073 f176 T.I4..3...b..s.v
0000680: 6c0a 2fc0 159b 2196 8854 7b22 21a2 c0f5 l./...!..T{"!...
0000690: 2373 b291 642f c078 6a96 6c10 0c5c 9869 #s..d/.xj.l..\.i
00006a0: c2cd de59 683f e23d 15bd 0a93 c098 aa6c ...Yh?.=.......l
00006b0: ce0f d311 9433 b069 c4f6 b103 662d 716d .....3.i....f-qm
00006c0: 3a7d 2455 2844 e5ee e30c 2088 f4a2 e839 :}$U(D.... ....9
00006d0: 6af4 23a8 c42e afcb c556 c68b b894 02ed j.#......V......
00006e0: dd03 bf17 0e3e f7b3 b46e a749 80f2 cfa0 .....>...n.I....
00006f0: 9349 270b 3488 a8e8 758a 33f0 0862 711d .I'.4...u.3.....
2009 Mar 04
1
pv_ops kernel 2.6.29-rc6 boot failure
...sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn''t
support DPO or FUA
sda: sda1 sda2 sda3
sd 0:0:0:0: [sda] Attached SCSI disk
sd 0:0:0:0: Attached scsi generic sg0 type 0
ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata2.00: ATAPI: HL-DT-ST DVD+/-RW GSA-H73N, B103, max UDMA/100
ata2.00: configured for UDMA/100
scsi 1:0:0:0: CD-ROM HL-DT-ST DVD+-RW GSA-H73N B103 PQ: 0 ANSI: 5
sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
sr 1:0:0:0: Attached scsi generic sg1 type 5
ata3: SATA link down (SStatus 4...
2008 Nov 29
24
pv_ops dom0 testing
I am trying to get a pv_ops dom0 working for testing,
but I am running into an elf_init error:
(XEN) *** LOADING DOMAIN 0 ***
(XEN) elf_init: not an ELF binary
Full output attached.
>From what I have read on the mailing lists, it seems
that it is usually a problem with either grub or a
corrupt dom0 kernel.
Attached is my kernel config (2.6.28-rc6-tip).
I followed the instructions on: