- Sort Score
- Result 10 results
- Languages All
Results 31 - 38 of 38 for getInput (0.06 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
task.setTitle("Gradle API " + version); Javadocs javadocs = extension.getJavadocs(); // TODO: This should be part of Javadoc task task.getInputs().file(javadocs.getJavadocCss()) .withPropertyName("stylesheetFile") .withPathSensitivity(PathSensitivity.NAME_ONLY);
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 7.3K bytes - Viewed (0) -
configure.py
def is_ppc64le(): return platform.machine() == 'ppc64le' def is_s390x(): return platform.machine() == 's390x' def is_cygwin(): return platform.system().startswith('CYGWIN_NT') def get_input(question): try: try: answer = raw_input(question) except NameError: answer = input(question) # pylint: disable=bad-builtin except EOFError: answer = '' return answer
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 48.2K bytes - Viewed (0) -
okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt
for (mapping in mappings) { require(!mapping.spansSections) val section = mapping.section val rangeStart = mapping.rangeStart val sectionList = result.getOrPut(section) { mutableListOf() } sectionList += when (mapping.type) { TYPE_MAPPED -> run { val deltaMapping = inlineDeltaOrNull(mapping)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 8.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java
public Object convert(final TypeLiteral role, final String value) { if (value.trim().startsWith("<")) { try { final MXParser parser = new MXParser(); parser.setInput(new StringReader(value)); parser.nextTag(); return parse(parser, role); } catch (final Exception e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 15.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
options.setSeparateOutputDirs(false); options.setBackends(singletonList("html5")); }); // TODO: Break the paths assumed here TaskInputs inputs = task.getInputs(); inputs.files(extension.getCssFiles()) .withPropertyName("manual") .withPathSensitivity(PathSensitivity.RELATIVE); inputs.dir("src/main/resources")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 01 05:46:51 UTC 2024 - 17.7K bytes - Viewed (0) -
tensorflow/c/eager/c_api.cc
} extern int TFE_OpGetFlatInputCount(const TFE_Op* op, TF_Status* status) { return tensorflow::unwrap(op)->GetInputs().size(); } extern TFE_TensorHandle* TFE_OpGetFlatInput(const TFE_Op* op, int index, TF_Status* status) { return tensorflow::wrap(tensorflow::unwrap(op)->GetInputs()[index]); } TF_AttrType TFE_OpGetAttrType(TFE_Op* op, const char* attr_name,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 43.9K bytes - Viewed (0) -
android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt
enableTls() val testHandler = object : Handler() { val calls = mutableMapOf<String, AtomicInteger>() override fun publish(record: LogRecord) { calls.getOrPut(record.loggerName) { AtomicInteger(0) } .incrementAndGet() } override fun flush() { } override fun close() { } }.apply {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 27K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
StringBuffer buffer; private String descriptorVersion; private String[] publicationsDefaultC; public void XmlModuleDescriptorP$Parser(org.apache.ivy.plugins.parser.ModuleDescriptorPars, org.apache.ivy.plugins.parser.ParserSettings); public final void setInput(java.net.URL); public final void setValidate(boolean); public final void parse(); public final void startElement(String, String, String, org.xml.sax.Attributes); private void mergeInfo(org.apache.ivy.core.module.descriptor.ModuleDescriptor); private...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0)