代码搜索:N
找到约 10,000 项符合「N」的源代码
代码结果 10,000
www.eeworm.com/read/311226/3684261
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") .
www.eeworm.com/read/311226/3684264
n3 n3-writer-test-20.n3
@prefix a: .
@prefix : .
:test :comment "Shared RDF lists tails" .
:a :p :list .
:b :p :list .
:list :- ("1" "2") .
("a" "b") .
:list2 :- ("3" "4") .
www.eeworm.com/read/311226/3684267
n3 n3-writer-test-11.n3
@prefix a: .
@prefix : .
:test :comment "RDF collections as lists: unattached lists" .
("1" "2" "3").
# This is not a statement.
().
www.eeworm.com/read/311226/3684269
n3 n3-writer-test-14.n3
@prefix a: .
@prefix : .
:test :comment "RDF collections as lists: nil list with property".
() a:prop "nilProp" .
www.eeworm.com/read/311226/3684272
n3 n3-writer-test-27.n3
# Numbers
@prefix xsd: .
@prefix x: .
@prefix : .
# Each of these should be one statement.
# Also tested in reader test rdf-test-25.n
www.eeworm.com/read/311226/3684282
n3 n3-writer-test-24.n3
# XML literals
@prefix rdf: .
@prefix x: .
[ x:p1 "bar"^^rdf:XMLLiteral ;
x:p2 "bar" ;
] .
www.eeworm.com/read/311226/3684284
n3 n3-writer-test-26.n3
@prefix rdfs: .
@prefix rdf: .
@prefix joseki: .
rdfs:comm
www.eeworm.com/read/311226/3684292
n3 n3-writer-test-06.n3
@prefix a: .
@prefix : .
:test :comment "BNode as single object" .
a:b a:oneRef [ a:pp "1" ; a:qq "2" ].
www.eeworm.com/read/311226/3684296
n3 n3-writer-test-07.n3
@prefix a: .
@prefix : .
:test :comment "BNode but shared" .
a:b1 a:twoRef _:a .
a:b2 a:twoRef _:a .
_:a :- [ a:pp "1" ; a:qq "2" ].