Home
last modified time | relevance | path

Searched full:question (Results 1 – 25 of 5000) sorted by relevance

12345678910>>...200

/aosp_15_r20/external/googleapis/google/ads/googleads/v15/enums/
H A Dlead_form_field_user_input_type.proto105 // Question: "Which model are you interested in?"
111 // Question: "Which type of vehicle are you interested in?"
117 // Question: "What is your preferred dealership?"
123 // Question: "When do you plan on purchasing a vehicle?"
129 // Question: "Do you own a vehicle?"
135 // Question: "What vehicle ownership option are you interested in?"
141 // Question: "What type of vehicle condition are you interested in?"
147 // Question: "What size is your company?"
153 // Question: "What is your annual sales volume?"
159 // Question: "How many years have you been in business?"
[all …]
/aosp_15_r20/external/googleapis/google/ads/googleads/v14/enums/
H A Dlead_form_field_user_input_type.proto105 // Question: "Which model are you interested in?"
111 // Question: "Which type of vehicle are you interested in?"
117 // Question: "What is your preferred dealership?"
123 // Question: "When do you plan on purchasing a vehicle?"
129 // Question: "Do you own a vehicle?"
135 // Question: "What vehicle ownership option are you interested in?"
141 // Question: "What type of vehicle condition are you interested in?"
147 // Question: "What size is your company?"
153 // Question: "What is your annual sales volume?"
159 // Question: "How many years have you been in business?"
[all …]
/aosp_15_r20/external/googleapis/google/ads/googleads/v16/enums/
H A Dlead_form_field_user_input_type.proto105 // Question: "Which model are you interested in?"
111 // Question: "Which type of vehicle are you interested in?"
117 // Question: "What is your preferred dealership?"
123 // Question: "When do you plan on purchasing a vehicle?"
129 // Question: "Do you own a vehicle?"
135 // Question: "What vehicle ownership option are you interested in?"
141 // Question: "What type of vehicle condition are you interested in?"
147 // Question: "What size is your company?"
153 // Question: "What is your annual sales volume?"
159 // Question: "How many years have you been in business?"
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dmybusinessqanda_v1.locations.questions.html87 <p class="firstline">Adds a question for the specified location.</p>
90 <p class="firstline">Deletes a specific question written by the current user.</p>
93 <p class="firstline">Deletes the answer written by the current user to a question.</p>
102 <p class="firstline">Updates a specific question written by the current user.</p>
111 <pre>Adds a question for the specified location.
114 parent: string, Required. The name of the location to write a question for. (required)
118 { # Represents a single question and some of its answers.
119 …;author&quot;: { # Represents the author of a question or answer # Output only. The author of the
124 …&quot;createTime&quot;: &quot;A String&quot;, # Output only. The timestamp for when the question w…
125 …Immutable. The unique name for the question. locations/*/questions/* This field will be ignored if…
[all …]
/aosp_15_r20/development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/
H A DMainActivity.java25 import static com.example.android.wearable.quiz.Constants.QUESTION;
103 private PriorityQueue<Question> mFutureQuestions;
133 mFutureQuestions = new PriorityQueue<Question>(10); in onCreate()
212 private static class Question implements Comparable<Question> { class in MainActivity
214 private String question; field in MainActivity.Question
219 public Question(String question, int questionIndex, String[] answers, in Question() argument
221 this.question = question; in Question()
227 public static Question fromJson(JSONObject questionObject, int questionIndex) in fromJson()
229 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); in fromJson() local
236 return new Question(question, questionIndex, answers, correctIndex); in fromJson()
[all …]
/aosp_15_r20/developers/samples/android/deprecated/wearable/wear/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
DMainActivity.java25 import static com.example.android.wearable.quiz.Constants.QUESTION;
103 private PriorityQueue<Question> mFutureQuestions;
133 mFutureQuestions = new PriorityQueue<Question>(10); in onCreate()
212 private static class Question implements Comparable<Question> { class in MainActivity
214 private String question; field in MainActivity.Question
219 public Question(String question, int questionIndex, String[] answers, in Question() argument
221 this.question = question; in Question()
227 public static Question fromJson(JSONObject questionObject, int questionIndex) in fromJson()
229 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); in fromJson() local
236 return new Question(question, questionIndex, answers, correctIndex); in fromJson()
[all …]
/aosp_15_r20/developers/build/prebuilts/gradle/Quiz/Application/src/main/java/com/example/android/wearable/quiz/
H A DMainActivity.java25 import static com.example.android.wearable.quiz.Constants.QUESTION;
103 private PriorityQueue<Question> mFutureQuestions;
133 mFutureQuestions = new PriorityQueue<Question>(10); in onCreate()
212 private static class Question implements Comparable<Question> { class in MainActivity
214 private String question; field in MainActivity.Question
219 public Question(String question, int questionIndex, String[] answers, in Question() argument
221 this.question = question; in Question()
227 public static Question fromJson(JSONObject questionObject, int questionIndex) in fromJson()
229 String question = questionObject.getString(JsonUtils.JSON_FIELD_QUESTION); in fromJson() local
236 return new Question(question, questionIndex, answers, correctIndex); in fromJson()
[all …]
/aosp_15_r20/external/googleapis/google/cloud/aiplatform/v1beta1/
H A Devaluation_service.proto106 // Input for question answering quality metric.
109 // Input for pairwise question answering quality metric.
113 // Input for question answering relevance metric.
116 // Input for question answering helpfulness
120 // Input for question answering correctness
194 // Question answering only metrics.
195 // Result for question answering quality metric.
198 // Result for pairwise question answering quality metric.
202 // Result for question answering relevance metric.
205 // Result for question answering helpfulness metric.
[all …]
/aosp_15_r20/external/accessibility-test-framework/src/main/java/com/google/android/apps/common/testing/accessibility/framework/
H A DQuestion.java11 * Question generated by a {@link QuestionHandler} about an {@link
15 public class Question { class
25 * @param questionId the question identifier
26 * @param questionTypeClass the class of the type of information needed to answer this question
27 * @param answerTypeClass the class of the answer type expected for this question
28 * @param questionHandler the {@link QuestionHandler} that created this question
29 * @param originalResult the {@link AccessibilityHierarchyCheckResult} that this question is about
30 * @param metadata extra data needed to answer this question
32 public Question( in Question() method in Question
48 * @param questionId The question identifier
[all …]
H A DAnswer.java9 /** A response to a {@link Question} about an {@link AccessibilityHierarchyCheckResult} */
13 private final Question question; field in Answer
18 * @param question the Question this is an answer to
22 Class<? extends AnswerType> answerTypeClass, Question question, ResultMetadata metadata) { in Answer() argument
24 this.question = question; in Answer()
33 /** Returns the {@link Question} this is the answer to. */
34 public Question getQuestion() { in getQuestion()
35 return question; in getQuestion()
73 Question question = Question.fromProto(proto.getQuestion(), associatedHierarchy); in fromProto() local
77 return new Answer(answerTypeClass, question, metadata); in fromProto()
H A DQuestionHandler.java14 /** Returns whether the result has an unanswered {@link Question} */
20 * Returns the next {@link Question} if the {@link AccessibilityHierarchyCheckResult} has one,
23 public abstract @Nullable Question getNextQuestion(AccessibilityHierarchyCheckResult result); in getNextQuestion()
26 * Returns the string for the phrasing of the passed question
28 * @param question the question needing to be phrased
30 * @return a human-readable String representing the phrasing of the Question
32 public abstract String getQuestionMessage(Question question, Locale locale); in getQuestionMessage() argument
35 * Returns zero to many results to replace the original result based on an answer to a question
37 * @param answer the {@link Answer} (which contains its associated {@link Question} and original
67 * Return a {@link Answer} that answers the question of questionId, if it has been answered, else
[all …]
/aosp_15_r20/external/mdnsresponder/mDNSCore/
H A DmDNS.c150 // Depending on whether this is a multicast or unicast question we want to set either: in SetNextQueryTime()
384 …LogInfo("GenerateNegativeResponse: Generating negative response for question %##s (%s)", q->qname.… in GenerateNegativeResponse()
388 if (m->CurrentQuestion == q) { q->ThisQInterval = 0; } // Deactivate this question in GenerateNegativeResponse()
389 // Don't touch the question after this in GenerateNegativeResponse()
405 …// A and B, and when we stop question A, UpdateQuestionDuplicates copies the value of CNAMEReferra… in AnswerQuestionByFollowingCNAME()
407 // the target name is still the same), and then when we stop question B, UpdateQuestionDuplicates in AnswerQuestionByFollowingCNAME()
410 …// those cases the newly re-appended question A has a different target name and therefore cannot be in AnswerQuestionByFollowingCNAME()
411 …// a duplicate of any other question ('B') which was itself a duplicate of the previous question A. in AnswerQuestionByFollowingCNAME()
441 // Note: All the callers should use the m->CurrentQuestion to see if the question is still valid or…
479 // The callback above could have caused the question to stop. Detect that in AnswerLocalQuestionWithLocalAuthRecord()
[all …]
H A DuDNS.c49 // question. Bit position is the index into the DNS server list. This is done so to try all
172 …// This should never happen. Whenever we change DNS server, we change the ID on the question and h… in PenalizeDNSServer()
174 …// penalize DNS server and no new servers to pick for the question and hence qDNSServer is NULL. I… in PenalizeDNSServer()
183 …LogInfo("PenalizeDNSServer: Penalizing DNS server %#a:%d question (%##s) for question %p %##s (%s)… in PenalizeDNSServer()
202 LogInfo("PenalizeDNSServer: Not Penalizing PTR question"); in PenalizeDNSServer()
206 LogInfo("PenalizeDNSServer: Penalizing question type %d", q->qtype); in PenalizeDNSServer()
226 q->ThisQInterval = 0; // Inactivate this question so that we dont bombard the network in PenalizeDNSServer()
237 // We want to try the next server immediately. As the question may already have backed off, reset in PenalizeDNSServer()
250 … // We don't have any more DNS servers for this question. If some server in the list did not return in PenalizeDNSServer()
261 // cache entries and answer this question. in PenalizeDNSServer()
[all …]
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dmybusinessqanda.v1.json104 "description": "Adds a question for the specified location.",
113 "description": "Required. The name of the location to write a question for.",
122 "$ref": "Question"
125 "$ref": "Question"
129 "description": "Deletes a specific question written by the current user.",
138 "description": "Required. The name of the question to delete.",
151 "description": "Deletes the answer written by the current user to a question.",
160 "description": "Required. The name of the question to delete an answer for.",
182 …"description": "Optional. How many answers to fetch per question. The default and maximum `answers…
222 "description": "Updates a specific question written by the current user.",
[all …]
/aosp_15_r20/external/googleapis/google/cloud/dataqna/v1alpha/
H A Dquestion_service.proto23 import "google/cloud/dataqna/v1alpha/question.proto";
36 // The service allows to create `Question` resources that are interpreted and
37 // are filled with one or more interpretations if the question could be
38 // interpreted. Once a `Question` resource is created and has at least one
45 // The `Question` resources are named `projects/*/locations/*/questions/*`.
47 // The `Question` resource has a singletion sub-resource `UserFeedback` named
54 // Gets a previously created question.
55 rpc GetQuestion(GetQuestionRequest) returns (Question) {
62 // Creates a question.
63 rpc CreateQuestion(CreateQuestionRequest) returns (Question) {
[all …]
H A Dquestion.proto34 // The question resource represents a natural language query, its settings,
36 // A question cannot be modified.
37 message Question { message
39 type: "dataqna.googleapis.com/Question"
40 pattern: "projects/{project}/locations/{location}/questions/{question}"
43 // Output only. Immutable. The unique identifier for the Question. The ID is server-generated.
50 // Required. Immutable. Scopes to be used for the question. A scope defines the relevant data set
77 // This is not a client or server error and the Question resource is still
78 // persisted, but the service could not interpret the question. Clients should
79 // present the error to the user so the user can rephrase the question.
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/g3doc/inference_with_metadata/task_library/
H A Dcustomized_task_api.md53 char kContext[] = ...; // context of a question to be answered
54 char kQuestion[] = ...; // question to be answered
55 // ask a question
71 `(std::string& context, std::string& question)` as input and outputs a
87 std::vector<QaAnswer> Answer(const std::string& context, const std::string& question) {
88 return Infer(context, question).value();
215 String CONTEXT = ...; // context of a question to be answered
216 String QUESTION = ...; // question to be answered
217 // ask a question
218 List<QaAnswer> answers = bertQuestionAnswerer.answer(CONTEXT, QUESTION);
[all …]
/aosp_15_r20/external/openthread/tests/scripts/thread-cert/border_router/
H A Dtest_dnssd_server_multi_border_routers.py162 'QUESTION': [(host1_full_name, 'IN', 'AAAA')],
168 'QUESTION': [(host2_full_name, 'IN', 'AAAA')],
176 'QUESTION': [(ins1_full_name, 'IN', 'SRV')],
184 'QUESTION': [(ins2_full_name, 'IN', 'SRV')],
192 'QUESTION': [(ins1_full_name, 'IN', 'TXT')],
198 'QUESTION': [(ins2_full_name, 'IN', 'TXT')],
206 'QUESTION': [(SERVICE_FULL_NAME, 'IN', 'PTR')],
214 'QUESTION': [(SERVICE_FULL_NAME, 'IN', 'PTR')],
234 'QUESTION': [(wifi_host_full_name, 'IN', 'AAAA')],
242 'QUESTION': [(wifi_service_instance_full_name, 'IN', 'SRV')],
[all …]
H A Dtest_dnssd_server.py136 'QUESTION': [(SERVICE_FULL_NAME, 'IN', 'PTR')],
145 'QUESTION': [(ins1_full_name, 'IN', 'SRV')],
156 'QUESTION': [(ins2_full_name, 'IN', 'SRV')],
167 'QUESTION': [(ins1_full_name, 'IN', 'TXT')],
173 'QUESTION': [(ins2_full_name, 'IN', 'TXT')],
181 'QUESTION': [(host1_full_name, 'IN', 'AAAA'),],
191 'QUESTION': [(host2_full_name, 'IN', 'AAAA'),],
228 'QUESTION': [(dp_service_name, 'IN', 'PTR'),],
250 'QUESTION': [(dp_instance_name, 'IN', 'SRV'),],
259 'QUESTION': [(dp_instance_name, 'IN', 'TXT'),],
[all …]
/aosp_15_r20/external/openscreen/discovery/mdns/
H A Dmdns_responder.cc234 bool IsServiceTypeEnumerationQuery(const MdnsQuestion& question) { in IsServiceTypeEnumerationQuery() argument
235 if (question.dns_type() != DnsType::kPTR) { in IsServiceTypeEnumerationQuery()
239 if (question.name().labels().size() < in IsServiceTypeEnumerationQuery()
244 const auto question_it = question.name().labels().begin(); in IsServiceTypeEnumerationQuery()
466 // If the new message doesn't have a question, then it must be additional in ProcessMultiPacketTruncatedMessage()
511 // If a second query for this same host arrives, then the question found may in RespondToTruncatedQuery()
522 for (const auto& question : questions) { in ProcessQueries() local
524 << question.name().ToString() << "', type: '" in ProcessQueries()
525 << question.dns_type() << "' from '" << src << "'"; in ProcessQueries()
528 if (question.dns_type() == DnsType::kNSEC) { in ProcessQueries()
[all …]
/aosp_15_r20/external/mdnsresponder/mDNSShared/
H A Duds_daemon.c1740 mDNSlocal void FoundInstance(mDNS *const m, DNSQuestion *question, const ResourceRecord *const answ… in FoundInstance() argument
1743 request_state *req = question->QuestionContext; in FoundInstance()
1768 req->sd, question->qname.c, DNSTypeName(question->qtype), AddRecord ? "Add" : "Rmv", in FoundInstance()
2227 mDNSlocal void resolve_result_callback(mDNS *const m, DNSQuestion *question, const ResourceRecord *… in resolve_result_callback() argument
2233 request_state *req = question->QuestionContext; in resolve_result_callback()
2236 …LogOperation("%3d: DNSServiceResolve(%##s) %s %s", req->sd, question->qname.c, AddRecord ? "ADD" :… in resolve_result_callback()
2406 mDNSlocal int AppendNewSearchDomain(mDNS *const m, DNSQuestion *question) in AppendNewSearchDomain() argument
2413 if (question->SearchListIndex == -1) in AppendNewSearchDomain()
2415 …LogMsg("AppendNewSearchDomain: question %##s (%s) SearchListIndex is -1", question->qname.c, DNSTy… in AppendNewSearchDomain()
2419 if (!question->AppendSearchDomains) in AppendNewSearchDomain()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/g3doc/examples/modify/model_maker/
H A Dquestion_answer.ipynb40 "# BERT Question Answer with TensorFlow Lite Model Maker"
73 …llustrate the adaptation and conversion of a commonly-used question answer model for question answ…
82 "# Introduction to BERT Question Answer Task"
91question answer task, which means given a passage and a question, the answer is the span in the p…
100 …"As for the model of question answer task, the inputs should be the passage and question pair that…
101 … "The size of input could be set and adjusted according to the length of passage and question."
223 "## Choose a model_spec that represents a model for question answer\n",
225 …"Each `model_spec` object represents a specific model for question answer. The Model Maker current…
233 …https://rajpurkar.github.io/SQuAD-explorer/), it could coverage faster for question answer task.\n"
255 ….edu/triviaqa/) is a reading comprehension dataset containing over 650K question-answer-evidence t…
[all …]
/aosp_15_r20/developers/build/prebuilts/gradle/Quiz/Application/src/main/assets/
H A DQuiz.json4 "question": "What is the scientific name of a butterfly?", string
14 "question": "How hot is the surface of the sun?", string
24 "question": "Who are the actors in The Internship?", string
34 "question": "What is the capital of Spain?", string
44 "question": "What are the school colors of the University of Texas at Austin?", string
54 "question": "What is 70 degrees Fahrenheit in Celsius?", string
64 "question": "When was Mahatma Gandhi born?", string
74 "question": "How far is the moon from Earth?", string
84 "question": "What is 65 times 52?", string
94 "question": "How tall is Mount Everest?", string
[all …]
/aosp_15_r20/developers/samples/android/deprecated/wearable/wear/Quiz/Application/src/main/assets/
DQuiz.json4 "question": "What is the scientific name of a butterfly?", string
14 "question": "How hot is the surface of the sun?", string
24 "question": "Who are the actors in The Internship?", string
34 "question": "What is the capital of Spain?", string
44 "question": "What are the school colors of the University of Texas at Austin?", string
54 "question": "What is 70 degrees Fahrenheit in Celsius?", string
64 "question": "When was Mahatma Gandhi born?", string
74 "question": "How far is the moon from Earth?", string
84 "question": "What is 65 times 52?", string
94 "question": "How tall is Mount Everest?", string
[all …]
/aosp_15_r20/developers/samples/android/deprecated/wearable/wear/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
DQuizListenerService.java25 import static com.example.android.wearable.quiz.Constants.QUESTION;
60 * If a new question is created, this builds a new notification for it.
61 * Otherwise, if a question is deleted, this cancels the corresponding notification.
68 private static final int QUIZ_REPORT_NOTIF_ID = -1; // Never used by question notifications.
100 // the question's status (i.e. was the answer right or wrong or left blank). in onDataChanged()
103 String question = dataMap.getString(QUESTION); in onDataChanged() local
112 // First page of notification contains question as Big Text. in onDataChanged()
114 .setBigContentTitle(getString(R.string.question, questionNum)) in onDataChanged()
115 .bigText(question); in onDataChanged()
126 .setContentTitle(question) in onDataChanged()
[all …]

12345678910>>...200