Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 431 for replaceable (0.14 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                    </tr>
                </thead>
                <tr>
                    <td>name</td>
                    <td><literal><replaceable>${project.name}</replaceable> (sometimes prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness)</literal></td>
                    <td/>
                </tr>
                <tr>
                    <td>sourceDirs</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.Compile.xml

                </thead>
                <tr>
                    <td>options</td>
                    <td/>
                </tr>
                <tr>
                    <td>source</td>
                    <td><literal><replaceable>sourceSet</replaceable>.java</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 762 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.GenerateEclipseClasspath.xml

                    <td>classpath</td>
                    <td><literal>project.eclipse.classpath</literal></td>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><filename><replaceable>${project.projectDir}</replaceable>/.classpath</filename></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 839 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.GenerateEclipseProject.xml

                    <td><literal>project.eclipse.project</literal></td>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><filename><replaceable>${project.projectDir}</replaceable>/.project</filename></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 838 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.JavaCompile.xml

                </thead>
                <tr>
                    <td>options</td>
                    <td/>
                </tr>
                <tr>
                    <td>source</td>
                    <td><literal><replaceable>sourceSet</replaceable>.java</literal></td>
                </tr>
                <tr>
                    <td>modularity</td>
                    <td/>
                </tr>
                <tr>
                    <td>javaCompiler</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 988 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.GenerateEclipseWtpComponent.xml

                    <td><literal>project.eclipse.wtp.component</literal></td>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td><filename><replaceable>${project.projectDir}</replaceable>/.settings/org.eclipse.wst.common.component</filename></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 932 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.jacoco.plugins.JacocoPluginExtension.xml

                    <td>toolVersion</td>
                    <td><literal>0.8.11</literal></td>
                </tr>
                <tr>
                    <td>reportsDirectory</td>
                    <td><literal><replaceable>${project.reporting.baseDir}</replaceable>/jacoco</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    // The spec is created lazily from the CRD object on request.
    // The mergedVersionSpec is only created on instantiation and is never
    // changed. crdCache is a cached.Replaceable and updates are thread
    // safe. Thus, no lock is needed to protect this struct.
    type specCache struct {
    	crdCache          cached.LastSuccess[*apiextensionsv1.CustomResourceDefinition]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/html/template/escape_test.go

    			`<h3><table><thead>...</h3>`,
    		},
    		{
    			"bad dynamic element name",
    			// Dynamic element names are typically used to switch
    			// between (thead, tfoot, tbody), (ul, ol), (th, td),
    			// and other replaceable sets.
    			// We do not currently easily support (ul, ol).
    			// If we do change to support that, this test should
    			// catch failures to filter out special tag names which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/telemetry/telemetry.go

    	prefix := strings.ReplaceAll(statPattern, serviceStatPattern, shortHostName(host, attributes))
    	prefix = strings.ReplaceAll(prefix, serviceFQDNStatPattern, host)
    	prefix = strings.ReplaceAll(prefix, subsetNameStatPattern, subset)
    	prefix = strings.ReplaceAll(prefix, serviceTargetPortStatPattern, strconv.Itoa(targetPort))
    	prefix = strings.ReplaceAll(prefix, servicePortStatPattern, strconv.Itoa(port.Port))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top