HomeSort by relevance Sort by last modified time
    Searched full:guides (Results 1 - 25 of 430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/google-styleguide/
METADATA 3 "Style guides for Google-originated open-source projects"
README.md 1 Google Style Guides
13 originated at Google, you may be pointed to this page to see the style guides
29 The style guides in this project are licensed under the CC-By 3.0 License,
33 The following Google style guides live outside of this project:
53 [dart]: https://www.dartlang.org/guides/language/effective-dart
  /external/tensorflow/tensorflow/python/keras/
README.md 6 See [keras.io](https://keras.io) for complete documentation and user guides.
  /external/linux-kselftest/
README 6 Please notice that there are several guides for kernel developers and users.
7 These guides can be rendered in a number of formats, like HTML and PDF.
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/
HelloAPI.txt 8 A basic tutorial that guides the user, step-by-step, through the process of initializing a window using :API:, drawing a triangle in it using hardware acceleration, and then terminating the window.
  /external/tensorflow/tensorflow/contrib/keras/
README.md 9 See [keras.io](https://keras.io) for complete documentation and user guides.
  /external/libnl/doc/
configure.ac 53 AC_MSG_WARN([*** asciidoc not found, disabling building of guides])
62 AC_MSG_WARN([*** source-highlight not found, disabling building of guides])
73 AC_MSG_WARN([*** Disabling building of guides])
84 AC_MSG_WARN([*** Disabling building of guides])
  /libcore/ojluni/src/main/java/java/util/
package.html 38 <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/collections/overview.html"><b>Collections Framework Overview</b></a>
39 <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/collections/reference.html"><b>
44 For overviews, tutorials, examples, guides, and tool documentation, please see:
49 href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/collections/designfaq.html"><b>Collections
  /external/tensorflow/tensorflow/docs_src/install/
index.md 13 The following guides explain how to install a version of TensorFlow
27 The following guides explain how to install TensorFlow libraries for use in
  /libcore/ojluni/src/main/java/java/security/
package-info.java 49 * <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/CryptoSpec.html">
56 * <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html">
67 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/spec/security-spec.doc.html">
72 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/HowToImplAProvider.html">
78 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/PolicyFiles.html"><b>
83 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/permissions.html"><b>
89 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/SecurityToolsSummary.html"><b>
  /libcore/ojluni/src/main/java/java/security/interfaces/
package-info.java 43 * to these cryptographic provider developer guides:
46 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/HowToImplAProvider.html">
66 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/CryptoSpec.html">
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
package.html 19 For overviews, tutorials, examples, guides, and tool documentation, please see:
  /external/tensorflow/tensorflow/contrib/lite/nnapi/
README.md 13 NNAPI, please refer to the [NNAPI documentation](https://developer.android.com/ndk/guides/neuralnetworks/index.html)
  /libcore/ojluni/src/main/java/java/security/cert/
package-info.java 35 * <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/CryptoSpec.html">
42 * <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html">
55 * "{@docRoot}/openjdk-redirect.html?v=8&path=/technotes/guides/security/certpath/CertPathProgGuide.html">
58 * <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/cert3.html">
  /external/clang/docs/
LibFormat.rst 40 order to make `ClangFormat` comply with different style guides. Currently,
41 two style guides are hard-coded:
  /tools/apksig/src/main/java/com/android/apksig/internal/jar/
SignatureFileWriter.java 27 * @see <a href="https://docs.oracle.com/javase/8/docs/technotes/guides/jar/jar.html#JAR_Manifest">JAR Manifest format</a>
36 // See https://docs.oracle.com/javase/8/docs/technotes/guides/jar/jar.html#Signed_JAR_File.
  /tools/metalava/src/test/java/com/android/tools/metalava/
KotlinInteropChecksTest.kt 27 src/test/pkg/Test.java:5: warning: Avoid method names that are Kotlin hard keywords ("fun"); see https://android.github.io/kotlin-guides/interop.html#no-hard-keywords [KotlinKeyword:141]
28 src/test/pkg/Test.java:6: warning: Avoid parameter names that are Kotlin hard keywords ("typealias"); see https://android.github.io/kotlin-guides/interop.html#no-hard-keywords [KotlinKeyword:141]
29 src/test/pkg/Test.java:7: warning: Avoid field names that are Kotlin hard keywords ("object"); see https://android.github.io/kotlin-guides/interop.html#no-hard-keywords [KotlinKeyword:141]
93 src/test/pkg/Foo.kt:7: warning: Companion object constants like INTEGER_ONE should be marked @JvmField for Java interoperability; see https://android.github.io/kotlin-guides/interop.html#companion-constants [MissingJvmstatic:143]
94 src/test/pkg/Foo.kt:13: warning: Companion object methods like missing should be marked @JvmStatic for Java interoperability; see https://android.github.io/kotlin-guides/interop.html#companion-functions [MissingJvmstatic:143]
128 src/test/pkg/Foo.kt:8: warning: A Kotlin method with default parameter values should be annotated with @JvmOverloads for better Java interoperability; see https://android.github.io/kotlin-guides/interop.html#function-overloads-for-defaults [MissingJvmstatic:143]
155 src/test/pkg/Foo.kt:6: error: Method Foo.error_throws_multiple_times appears to be throwing java.io.FileNotFoundException; this should be recorded with a @Throws annotation; see https://android.github.io/kotlin-guides/interop.html#document-exceptions [DocumentExceptions:145]
156 src/test/pkg/Foo.kt:16: error: Method Foo.error_throwsCheckedExceptionWithWrongExceptionClassInThrows appears to be throwing java.io.FileNotFoundException; this should be recorded with a @Throws annotation; see https://android.github.io/kotlin-guides/interop.html#document-exceptions [DocumentExceptions:145]
157 src/test/pkg/Foo.kt:37: error: Method Foo.error_throwsRuntimeExceptionDocsMissing appears to be throwing java.lang.UnsupportedOperationException; this should be listed in the documentation; see https://android.github.io/kotlin-guides/interop.html#document-exceptions [DocumentExceptions:145]
158 src/test/pkg/Foo.kt:43: error: Method Foo.error_missingSpecificAnnotation appears to be throwing java.lang.UnsupportedOperationException; this should be listed in the documentation; see https://android.github.io/kotlin-guides/interop.html#document-exceptions [DocumentExceptions:145
    [all...]
  /external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
implicit_deduction_guides.pass.cpp 11 // UNSUPPORTED: libcpp-no-deduction-guides
21 // so they're compatible with implicit deduction guides, or if that's not
22 // possible that they provide explicit guides to make it work.
  /libcore/ojluni/src/main/java/javax/crypto/
package.html 50 <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html"><b>
62 "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/CryptoSpec.html">
68 "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/HowToImplAProvider.html">
  /external/libcxx/test/std/strings/string.view/string.view.cons/
implicit_deduction_guides.pass.cpp 11 // UNSUPPORTED: libcpp-no-deduction-guides
16 // so they're compatible with implicit deduction guides.
  /external/tensorflow/tensorflow/g3doc/
README.txt 8 tensorflow/docs_src/ (for tutorials and other guides) and
39 guides should probably be referred to using @{$python/<guide-name>}
  /libcore/ojluni/src/main/java/java/io/
package.html 44 For overviews, tutorials, examples, guides, and tool documentation,
47 <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/serialization">Serialization Enhancements</a>
  /libcore/ojluni/src/main/java/java/util/jar/
package.html 48 <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/jar/jar.html">
55 For overviews, tutorials, examples, guides, and tool documentation, please see:
  /libcore/ojluni/src/main/java/javax/crypto/interfaces/
package.html 49 "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/HowToImplAProvider.html">
68 "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/crypto/CryptoSpec.html">
  /libcore/ojluni/src/main/java/javax/net/ssl/
package.html 40 <li><a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html">
49 For overviews, tutorials, examples, guides, and tool documentation, please see:

Completed in 1010 milliseconds

1 2 3 4 5 6 7 8 91011>>