Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 509 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. pkg/test/echo/common/dialer.go

    // TCPDialFunc a function for establishing a TCP connection.
    type TCPDialFunc func(dialer net.Dialer, ctx context.Context, address string) (net.Conn, error)
    
    // Dialer is a replaceable set of functions for creating client-side connections for various protocols, allowing a test
    // application to intercept the connection creation.
    type Dialer struct {
    	GRPC      GRPCDialFunc
    	Websocket WebsocketDialFunc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 07 15:55:42 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. pkg/filewatcher/filewatcher.go

    }
    
    // NewWatcher return with a FileWatcher instance that implemented with fsnotify.
    func NewWatcher() FileWatcher {
    	return &fileWatcher{
    		workers: map[string]*workerState{},
    
    		// replaceable functions for tests
    		funcs: &patchTable{
    			newWatcher: fsnotify.NewWatcher,
    			addWatcherPath: func(watcher *fsnotify.Watcher, path string) error {
    				return watcher.Add(path)
    			},
    		},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    # Regression test for golang.org/issue/34254:
    # a clone of gopkg.in/[…].vN should be replaceable by
    # a fork hosted at corp.example.com/[…]/vN,
    # even if there is an explicit go.mod file containing the
    # gopkg.in path.
    
    skip 'skipping test that depends on an unreliable third-party server; see https://go.dev/issue/54503'
    	# TODO(#54043): Make this test hermetic and re-enable it.
    
    [!net:gopkg.in] skip
    [!git] skip
    
    env GO111MODULE=on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top