Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 114 for Director (0.53 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirectoryPluginIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheDirectoryPluginIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "directory based plugins are instrumented and violations are reported"() {
            generateExternalPlugin("first", "FirstPlugin", "first.property")
            generateExternalPlugin("second", "SecondPlugin", "second.property")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

                // Because unqualified task names are resolved relative to the selected
                // sub-project according to either `projectDirectory` or `currentDirectory`,
                // the relative directory information must be part of the key.
                val projectDir = startParameter.projectDirectory
                if (projectDir != null) {
                    relativePathOf(
                        projectDir,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    // evaluating f in the directory dir.
    // We always pass absolute paths of source files so that
    // the error messages will include the full path to a file
    // in need of attention.
    func mkAbs(dir, f string) string {
    	// Leave absolute paths alone.
    	// Also, during -n mode we use the pseudo-directory $WORK
    	// instead of creating an actual work directory that won't be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProvider.kt

         *
         * The package should contain Kotlin declarations inside.
         *
         * Note that for Kotlin, a package doesn't need to correspond to a directory structure like in Java.
         * So, a package [FqName] is determined by a Kotlin file package directive.
         */
        public abstract fun doesKotlinOnlyPackageExist(packageFqName: FqName): Boolean
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

                        public void addSupplierWithSourceDirectorySet() {
                            SourceDirectorySet s = getProject().getObjects().sourceDirectorySet("test", "test");
                            addSupplier(() -> "source directory set name is " + s.getName());
                        }
    
                        @TaskAction
                        void printValue() {
                            for (Supplier<String> supplier : suppliers) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    					}
    					matchLocalDirs(ctx, matchModRoots, m, rs)
    				}
    
    				// Make a copy of the directory list and translate to import paths.
    				// Note that whether a directory corresponds to an import path
    				// changes as the build list is updated, and a directory can change
    				// from not being in the build list to being in it and back as
    				// the exact version of a particular module increases during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/main.go

    	flagOutfile    = flag.String("o", "", "write output to `file`")
    	flagPluginPath = flag.String("pluginpath", "", "full path name for plugin")
    
    	flagInstallSuffix = flag.String("installsuffix", "", "set package directory `suffix`")
    	flagDumpDep       = flag.Bool("dumpdep", false, "dump symbol dependency graph")
    	flagRace          = flag.Bool("race", false, "enable race detector")
    	flagMsan          = flag.Bool("msan", false, "enable MSan interface")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    When the cgo directives are parsed, any occurrence of the string ${SRCDIR}
    will be replaced by the absolute path to the directory containing the source
    file. This allows pre-compiled static libraries to be included in the package
    directory and linked properly.
    For example if package foo is in the directory /go/src/foo:
    
    	// #cgo LDFLAGS: -L${SRCDIR}/libs -lfoo
    
    Will be expanded to:
    
    	// #cgo LDFLAGS: -L/go/src/foo/libs -lfoo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    	-outputdir directory
    	    Place output files from profiling in the specified directory,
    	    by default the directory in which "go test" is running.
    
    	-trace trace.out
    	    Write an execution trace to the specified file before exiting.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    	_, obj := env.scope.LookupParent(name, env.pos)
    	return obj
    }
    
    // An importKey identifies an imported package by import path and source directory
    // (directory containing the file containing the import). In practice, the directory
    // may always be the same, or may not matter. Given an (import path, directory), an
    // importer must always return the same package (but given two different import paths,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top