Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 779 for Directories (0.24 sec)

  1. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractDslTest.kt

        val kotlinDslEvalBaseTempDir: File
            get() = dslTestFixture.kotlinDslEvalBaseTempDir
    
        /**
         * Evaluates the given Kotlin [script] against this [Project] writing compiled classes
         * to sub-directories of [baseCacheDir] using [scriptCompilationClassPath].
         */
        fun Project.eval(
            script: String,
            baseCacheDir: File = kotlinDslEvalBaseCacheDir,
            baseTempDir: File = kotlinDslEvalBaseTempDir,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

                if (sourceSnapshot.getType() == FileType.Directory) {
                    // Prior to 8.7 we were combining instrumented classes from both directories and JARs into JARs.
                    // Now we store instrumented directories as directories, so we invalidate these.
                    // However, transformed JARs should be left intact.
                    hasher.putBoolean(true);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/pattern_syntax_error.txt

    env GO111MODULE=off
    
    # patterns match directories with syntax errors
    ! go list ./...
    ! go build ./...
    ! go install ./...
    
    -- mypkg/x.go --
    package mypkg
    
    -- mypkg/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 185 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    		if omitted {
    			cf.Omitted = append(cf.Omitted, fe)
    		} else {
    			cf.Invalid = append(cf.Invalid, fe)
    		}
    	}
    
    	// Find directories containing go.mod files (other than the root).
    	// Files in these directories will be omitted.
    	// These directories will not be included in the output zip.
    	haveGoMod := make(map[string]bool)
    	for _, f := range files {
    		p := f.Path()
    		dir, base := path.Split(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppBinary.java

        /**
         * Returns the C++ source files of this binary.
         */
        FileCollection getCppSource();
    
        /**
         * Returns the header directories to use to compile this binary. Includes the header directories of this binary plus those of its dependencies.
         */
        FileCollection getCompileIncludePath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         * Returns the user search paths for this binary. This includes the header directories for the binary itself, plus any dependencies of the binary.
         */
        List<File> getUserHeaderSearchPaths();
    
        /**
         * Returns the source files for this binary.
         */
        DomainObjectSet<? extends SourceFile> getSources();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/crypto/x509/root_aix.go

    // license that can be found in the LICENSE file.
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/var/ssl/certs/ca-bundle.crt",
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/var/ssl/certs",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 410 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    `antlr` — link:{groovyDslPath}/org.gradle.api.plugins.antlr.AntlrSourceDirectorySet.html[AntlrSourceDirectorySet]::
    The ANTLR grammar files of this source set. Contains all `.g` or `.g4` files found in the ANTLR source directories, and excludes all other types of files. _Default value is non-null._
    
    [[sec:antlr_convention_properties]]
    == Convention properties (deprecated)
    
    The ANTLR plugin adds one convention property.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. .gitignore

    /www/master/shared/config/development.json
    
    # Karma output
    /www/test_out
    
    # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
    /_tmp/
    /doc_tmp/
    
    # Test artifacts produced by Prow/kubetest2 jobs
    /_artifacts/
    /_rundir/
    
    # Go dependencies installed on Jenkins
    /_gopath/
    
    # Config directories created by gcloud and gsutil on Jenkins
    /.config/gcloud*/
    /.gsutil/
    
    # CoreOS stuff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/TempFileCreator.java

        }
    
        /** Maximum loop count when creating temp directories. */
        private static final int TEMP_DIR_ATTEMPTS = 10000;
      }
    
      private static final class ThrowingCreator extends TempFileCreator {
        private static final String MESSAGE =
            "Guava cannot securely create temporary files or directories under SDK versions before"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top