Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Footnote (0.1 sec)

  1. src/html/escape_test.go

    	{
    		"numericEnds",
    		"&# &#x €43 &copy = &#169f = &#xa9",
    		"&# &#x €43 © = ©f = ©",
    	},
    	// Handle numeric ISO-8859-1 entity replacements.
    	{
    		"numericReplacements",
    		"Footnote‡",
    		"Footnote‡",
    	},
    	// Handle single ampersand.
    	{
    		"copySingleAmpersand",
    		"&",
    		"&",
    	},
    	// Handle ampersand followed by non-entity.
    	{
    		"copyAmpersandNonEntity",
    		"text &test",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 22 12:45:38 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    Gradle has general support for the three major tool chains on major operating system: Clang footnote:[Installed with Xcode on macOS], GCC footnote:[Installed through Cygwin and MinGW for 32- and 64-bits architecture on Windows] and Visual {cpp} footnote:[Installed with Visual Studio 2010 to 2019] (Windows-only).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    `src/main/webapp` to the root of the archive. Your `webapp` directory may of course contain a `WEB-INF` sub-directory, which may contain a `web.xml` file. Your compiled classes are compiled to `WEB-INF/classes`. All the dependencies of the `runtime` footnote:[The `runtime` configuration extends the `compile` configuration.] configuration are copied to `WEB-INF/lib`.
    
    The link:{groovyDslPath}/org.gradle.api.tasks.bundling.War.html[War] class in the API documentation has additional useful information....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    #footnotes hr {
    	width: 20%;
    	min-width: 6.25em;
    	margin: -0.25em 0 0.75em 0;
    	border-width: 1px 0 0 0;
    }
    
    #footnotes .footnote {
    	padding: 0 0.375em 0 0.225em;
    	line-height: 1.3334;
    	font-size: 0.875em;
    	margin-left: 1.2em;
    	text-indent: -1.05em;
    	margin-bottom: 0.2em;
    }
    
    #footnotes .footnote a:first-of-type {
    	font-weight: bold;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    == Project layout
    
    The Groovy plugin assumes the project layout shown in <<#groovylayout,Groovy Layout>>. All the Groovy source directories can contain Groovy _and_ Java code. The Java source directories may only contain Java source code.footnote:[Gradle uses the same conventions as introduced by Russel Winder's link:https://gant.github.io/[Gant tool].] None of these directories need to exist or have anything in them; the Groovy plugin will simply compile whatever it finds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    ----
    ====
    
    This feature is helpful if you work with tasks provided by Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    Since build scripts are Kotlin or Groovy scripts, you can execute an Ant build as an external process.
    Your build script may contain statements like: `"ant clean compile".execute()`.footnote:[In Groovy you can execute Strings.]
    
    Gradle's Ant integration allows you to migrate your build from Ant to Gradle smoothly:
    
    1. Begin by importing your existing Ant build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    Gradle provides support for consuming pre-built binaries from Maven repositories published by Gradle footnote:[Unfortunately, Cocoapods repositories aren’t yet supported as core features].
    
    We will cover how to add dependencies between projects within a multi-build project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    dividing test classes based upon their purpose, see the incubating <<jvm_test_suite_plugin.adoc#jvm_test_suite_plugin,JVM Test Suite>> plugin.
    
    JUnit 4.8 introduced the concept of categories for grouping JUnit 4 tests classes and methods.footnote:[The JUnit wiki contains a detailed description on how to work with JUnit categories: https://github.com/junit-team/junit/wiki/Categories[].] link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html#org.gradle.api.tasks.testing.Test:useJUnit(...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    Scala projects need to declare a `scala-library` dependency. This dependency will then be used on compile and runtime class paths. It will also be used to get hold of the Scala compiler and Scaladoc tool, respectively.footnote:[See <<#sec:configure_scala_classpath,Automatic configuration of Scala classpath>>.]
    
    If Scala is used for production code, the `scala-library` dependency should be added to the `implementation` configuration:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top