Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Ul (0.18 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    ul.blockList li.blockList, ul.blockListLast li.blockList {
        list-style:none;
        margin-bottom:15px;
        line-height:1.4;
    }
    ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
        padding:0px 20px 5px 10px;
        border:1px solid var(--border-color);
        background-color:var(--section-background-color);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					case "first" :
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						obj.children("ul").prepend(d);
    						tmp = obj;
    						break;
    					case "last":
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						obj.children("ul").append(d);
    						tmp = obj;
    						break;
    					default:
    						if(!obj.children("ul").length) { obj.append("<ul />"); }
    						if(!position) { position = 0; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    	/* Override nested font-size change */
    }
    
    ul.square li ul,
    ul.circle li ul,
    ul.disc li ul {
    	list-style: inherit;
    }
    
    ul.square {
    	list-style-type: square;
    }
    
    ul.circle {
    	list-style-type: circle;
    }
    
    ul.disc {
    	list-style-type: disc;
    }
    
    ul.no-bullet {
    	list-style: none;
    }
    
    /* Ordered Lists */
    ol li ul,
    ol li ol {
    	margin-left: 1.25em;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. maven-core/src/site/resources/design/2.1-lifecycle-refactor.graffle

    cFi{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica-Bold;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc \f0\b\fs24 \cf0 \ul \ulc0 PluginManager}ID110Bounds{{287.086, 525.522}, {92, 14}}ClassShapedGraphicFi.181819915771484Posit.5277674198150635Rota{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf410 {\fonttbl\f0\fswiss\fcharset77 Helvetica;} {\colortbl;\red255\green255\blue255;}...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 11 17:19:02 UTC 2017
    - 96.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

        }
    
        /**
         * Asserts:
         * <p/>
         * <ul>
         * <li><code>string != null</code>
         * <li><code>string.length > 0</code>
         * </ul>
         */
        @SuppressWarnings("checkstyle:parameternumber")
        private boolean validateStringNotEmpty(
                String prefix,
                String prefix2,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

        }
    
        /**
         * Asserts:
         * <p/>
         * <ul>
         * <li><code>string != null</code>
         * <li><code>string.length > 0</code>
         * </ul>
         */
        @SuppressWarnings("checkstyle:parameternumber")
        private boolean validateStringNotEmpty(
                String prefix,
                String prefix2,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Creates a new {@code FileTree} which contains the contents of the given TAR file. The given tarPath path can be:
         * <ul>
         *   <li>an instance of {@link org.gradle.api.resources.Resource}</li>
         *   <li>any other object is evaluated as per {@link #file(Object)}</li>
         * </ul>
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. src/html/template/escape_test.go

    		{
    			map[string]string{
    				"main":   `{{template "helper" .}}`,
    				"helper": `{{if .Children}}<ul>{{range .Children}}<li>{{template "main" .}}</li>{{end}}</ul>{{else}}{{.X}}{{end}}`,
    			},
    			`<ul><li>foo</li><li>&lt;bar&gt;</li><li><ul><li>baz</li></ul></li></ul>`,
    		},
    		// Co-recursive templates that end in its start context.
    		{
    			map[string]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

     * find it easier to use a framework. Frameworks automate the process, often adding features like
     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

     * find it easier to use a framework. Frameworks automate the process, often adding features like
     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top