Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Footnote (0.2 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/css/base.css

    .example-break, .figure-break {
        display: none;
    }
    
    .exampleLocation .emphasis em {
        font-style: normal;
        font-weight: bold;
    }
    
    .appendix h1 {
        margin-bottom: 1.0em;
    }
    
    .footnote sup {
        vertical-align: baseline;
        font-size: 100%;
    }
    
    .note p:first-child, .tip p:first-child {
        margin-top: 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    |`@OutputDirectories`
    |Property is one or more output directories for the task
    
    |`@Destroys`
    |Property is one or more files or directories (coming from other tasks) that the task destroys (deletes/removes)footnote:2[This notation is used to specify locations/files that a task will always delete, and these locations/files typically belong to other tasks. This annotation is useful for tasks that clean up after other tasks such as `clean`.]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

    .module-label-in-package, .module-label-in-type, .package-label-in-type,
    .package-hierarchy-label, .type-name-label, .type-name-link, .search-tag-link, .preview-label {
        font-weight:bold;
    }
    .deprecation-comment, .help-footnote, .preview-comment {
        font-style:italic;
    }
    .deprecation-block {
        font-size:1em;
        font-family:var(--block-font-family);
        border-style:solid;
        border-width:thin;
        border-radius:10px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/RootNode.java

    import org.gradle.internal.component.model.VariantGraphResolveState;
    
    import java.util.List;
    import java.util.Set;
    
    class RootNode extends NodeState implements RootGraphNode {
        private final ResolveOptimizations resolveOptimizations;
        private final List<? extends DependencyMetadata> syntheticDependencies;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

            private final Node rootNode;
    
            PrefixFileSet(File rootDir) {
                this(toAbsolutePath(rootDir));
            }
    
            PrefixFileSet(String rootPath) {
                String path = removeTrailingSeparator(rootPath);
                this.rootNode = new Node(path);
            }
    
            PrefixFileSet(Node rootNode) {
                this.rootNode = rootNode;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            false
        )
    
        def "result can be read multiple times"() {
            def rootNode = rootNode(1, "org", "root", "1.0")
            builder.start(rootNode)
            builder.visitNode(rootNode)
            builder.finish(rootNode)
    
            when:
            def result = builder.getResolutionResult([] as Set)
    
            then:
            with(result.rootSource.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

        private final Map<ModuleIdentifier, ModuleResolveState> modules;
        private final Map<NodeIdentifier, NodeState> nodes;
        private final Map<SelectorCacheKey, SelectorState> selectors;
        private final RootNode root;
        private final ComponentIdGenerator idGenerator;
        private final DependencyToComponentIdResolver idResolver;
        private final ComponentMetaDataResolver metaDataResolver;
        private final Deque<NodeState> queue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. src/runtime/os_plan9.go

    	for mp := (*m)(atomic.Loadp(unsafe.Pointer(&allm))); mp != nil; mp = mp.alllink {
    		if mp.procid != 0 && mp.procid != pid {
    			postnote(mp.procid, buf[:])
    		}
    	}
    	getg().m.locks--
    }
    
    var procdir = []byte("/proc/")
    var notefile = []byte("/note\x00")
    
    func postnote(pid uint64, msg []byte) int {
    	var buf [128]byte
    	var tmp [32]byte
    	n := copy(buf[:], procdir)
    	n += copy(buf[n:], itoa(tmp[:], pid))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top