代码搜索结果
找到约 1,193 项符合
Q 的代码
q-smp.c
/*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2006
qpl_v1.0.svn-base
Q Public License v1.0
Q Public License v1.0
Copyright ? 1999 Trolltech AS, Norway.
Everyone is permitted to copy and distribute this license document.
The intent of this license is to establ
q.h
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreem
q.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreem
q-bp2.rq
SELECT ?givenName
WHERE
{ ?y "Smith" .
?y ?givenName .
}
q-union1.rq
PREFIX foaf:
PREFIX vCard:
SELECT ?name
WHERE
{
{ [] foaf:name ?name } UNION { [] vCard:FN ?name }
}
q-ds-3.rq
PREFIX dc:
PREFIX :
SELECT ?title
{
GRAPH :ds-ng-2.ttl
{ ?b dc:title ?title }
}
q-opt1.rq
# Optional example
PREFIX info:
PREFIX vcard:
SELECT ?name ?age
WHERE
{
?person vcard:FN ?name .
O
q-opt3.rq
# Optional example
PREFIX info:
PREFIX vcard:
SELECT ?name ?age
WHERE
{
?person vcard:FN ?name .
O
q-union3.rq
PREFIX foaf:
PREFIX vCard:
SELECT ?name1 ?name2
WHERE
{
?x a foaf:Person
OPTIONAL { ?x foaf:name ?name1 }