代码搜索:N

找到约 10,000 项符合「N」的源代码

代码结果 10,000
www.eeworm.com/read/440773/1789645

n3 n3-writer-test-04.n3

@prefix a: . @prefix b: . @prefix : . :test :comment "Multiple values" . a:b a:p1 "123" ; a:p1 "456" . b:b a:p2 a:v1 ; a:p3 a:v2 .
www.eeworm.com/read/440773/1789652

n3 n3-writer-test-22.n3

# Test datatypes. @prefix xsd: . @prefix x: . @prefix : . [ :prop1 "123" ; :prop1 "123"^^xsd:string ; :prop1 "123"^^xsd:integer
www.eeworm.com/read/440773/1789655

n3 n3-writer-test-28.n3

# Numbers with errors. # See also rdf-test-28.n3 @prefix xsd: . @prefix x: . @prefix : . :y :p1 "xyz"^^xsd:integer . :y :p2 "12xyz"^
www.eeworm.com/read/440773/1789656

n3 n3-writer-test-08.n3

@prefix a: . @prefix : . :test :comment "Not a bnode" . a:b1 a:twoRef . a:b2 a:twoRef . :- [ a:pp "1" ; a:qq "2" ].
www.eeworm.com/read/440773/1789657

n3 n3-writer-test-18.n3

@prefix a: . @prefix : . :test :comment "Nested bNodes" . a:a a:p [ a:p2 [ a:p3 "v1" , "v2" ; a:p4 "v3" ] ; a:p5 "v4" ] .
www.eeworm.com/read/440773/1789659

n3 n3-writer-test-15.n3

@prefix rdf: . @prefix a: . @prefix : . :test :comment "RDF collections as lists : but with attached property so not well-formed
www.eeworm.com/read/440773/1789661

n3 n3-writer-test-12.n3

@prefix a: . @prefix : . :test :comment "RDF collections as lists". a:list3 a:p ("1" "2" "3"). a:list0 a:p ().
www.eeworm.com/read/440773/1789666

n3 n3-writer-test-03.n3

@prefix a: . @prefix : . :test :comment "Compound statements, same resource" . a:b a:p1 "123" ; a:p1 "456" . a:b a:p2 a:v1 ; a:p3 a:v2 .
www.eeworm.com/read/440773/1789667

n3 n3-writer-test-13.n3

@prefix a: . @prefix : . :test :comment "RDF collections as lists" . a:list0 a:p (). _:list0 a:p ().
www.eeworm.com/read/440773/1789673

n3 n3-writer-test-19.n3

@prefix a: . @prefix : . :test :comment "Shared RDF collections as lists" . :a :p _:list . :b :p _:list . _:list :- ("1" "2") .