Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Wiles (0.25 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="JavadocPackage"
                  files=".*[/\\]process-services[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]process[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
                  files=".*[/\\]plugins[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]jvm[/\\][^/\\]+"/>
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys.go

    		return nil, err
    	}
    
    	// Stat files in overlay to make composite list of fileinfos
    	files := make(map[string]fs.FileInfo)
    	for _, f := range diskfis {
    		files[f.Name()] = f
    	}
    	for name, to := range dirNode.children {
    		switch {
    		case to.isDir():
    			files[name] = fakeDir(name)
    		case to.isDeleted():
    			delete(files, name)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    from file("copy2source.txt")
                }
    
                tasks.register("reader") {
                    inputs.files($tasksInput)
                    doLast {
                        println inputs.files.files*.name
                    }
                }
            """
    
            when:
            configurationCacheRun "reader"
    
            then:
            outputContains expectedOutput
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    Using GOOS=android matches build tags and files as for GOOS=linux
    in addition to android tags and files.
    
    Using GOOS=illumos matches build tags and files as for GOOS=solaris
    in addition to illumos tags and files.
    
    Using GOOS=ios matches build tags and files as for GOOS=darwin
    in addition to ios tags and files.
    
    The defined architecture feature build tags are:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

            if (source is TransformedArtifactSet) {
                // Represents artifact transform outputs. Visit the source rather than the files
                // Transforms may have inputs or parameters that are task outputs or other changing files
                // When this is not the case, we should run the transform now and write the result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

    import org.gradle.api.tasks.PathSensitive
    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.TaskAction
    import org.gradle.test.fixtures.file.TestFile
    
    import java.nio.file.Files
    import java.util.stream.Collectors
    
    /**
     * A helper to define a plugin that applies a simple transform action to dependencies.
     */
    class TransformFixture {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                    addAll(compilationPeerData.files)
                    addAll(codeFragmentMappings?.capturedFiles.orEmpty())
    
                    // The main file needs to be the last so caches for the context declarations are populated in FIR-to-IR.
                    remove(file)
                }
    
                addAll(dependencyFiles)
                add(file)
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api.go

    // errors.
    //
    // The package is specified by a list of *syntax.Files and corresponding
    // file set, and the package path the package is identified with.
    // The clean path must not be empty or dot (".").
    func (conf *Config) Check(path string, files []*syntax.File, info *Info) (*Package, error) {
    	pkg := NewPackage(path, "")
    	return pkg, NewChecker(conf, pkg, info).Files(files)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            if (isInputTrackingDisabled() || isExecutingWork()) {
                // Ignore files that are read as part of the task actions. These should really be task
                // inputs. Otherwise, we risk fingerprinting files such as:
                // - temporary files that will be gone at the end of the build.
                // - files in the output directory, for incremental tasks or tasks that remove stale outputs
                return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                        outputFile.parentFile.mkdirs()
                        String outputContent = ""
                        for(File f: getMyInputs().files) {
                            outputContent += f.canonicalPath + "\\n"
                        }
                        Files.write(outputFile.toPath(), outputContent.getBytes())
                    }
                }
    
                tasks.register("myTask", MyTask.class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top