Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 118 for Corefile (0.12 sec)

  1. src/cmd/go/internal/gover/version.go

    	}
    	return mf.Go.Version
    }
    
    // FromGoWork returns the go version from the go.mod file.
    // It returns DefaultGoWorkVersion if the go.mod file does not contain a go line or if wf is nil.
    func FromGoWork(wf *modfile.WorkFile) string {
    	if wf == nil || wf.Go == nil {
    		return DefaultGoWorkVersion
    	}
    	return wf.Go.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

            def fileInWatchableHierarchies = file("first/inside/root/dir/file.txt")
            def fileOutsideOfWatchableHierarchies = file("forth").file("someFile.txt")
    
            when:
            registerWatchableHierarchies(watchableHierarchies)
            then:
            0 * _
    
            when:
            fileInWatchableHierarchies.createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultIvyArtifactName.java

            return new DefaultIvyArtifactName(name, publishArtifact.getType(), publishArtifact.getExtension(), classifier);
        }
    
        public static DefaultIvyArtifactName forFile(File file, @Nullable String classifier) {
            String fileName = file.getName();
            return forFileName(fileName, classifier);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/TransformedArtifactCodec.kt

            val file = readNonNull<File>()
            val artifactId = ComponentFileArtifactIdentifier(ownerId, file.name)
            val artifact = PreResolvedResolvableArtifact(null, DefaultIvyArtifactName.forFile(file, null), artifactId, file, TaskDependencyContainer.EMPTY, calculatedValueContainerFactory)
            val steps = readNonNull<List<TransformStepSpec>>().map { BoundTransformStep(it.transformStep, it.recreateDependencies()) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

            gradleManifest.attributes == MANIFEST_VERSION_MAP
            !gradleManifest.sections
            !gradleManifest.mergeSpecs
        }
    
        def testInitWithPathFileResolver() {
            TestFile manifestFile = tmpDir.file('somefile')
            def fileMap = [Key2: 'value2File', key4: 'value4File', key6: 'value6File']
            def fileSectionMap = [Keysec2: 'value2Secfile', keysec4: 'value5Secfile', keysec6: 'value6Secfile']
            String content = ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvableArtifact.java

        public ResolvedArtifact toPublicView() {
            return publicView;
        }
    
        @Override
        public ResolvableArtifact transformedTo(File file) {
            IvyArtifactName artifactName = DefaultIvyArtifactName.forFile(file, artifact.getClassifier());
    
            String originalFileName;
            if (artifactId instanceof TransformedComponentFileArtifactIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/runtime/os_plan9.go

    			postnote(mp.procid, buf[:])
    		}
    	}
    	getg().m.locks--
    }
    
    var procdir = []byte("/proc/")
    var notefile = []byte("/note\x00")
    
    func postnote(pid uint64, msg []byte) int {
    	var buf [128]byte
    	var tmp [32]byte
    	n := copy(buf[:], procdir)
    	n += copy(buf[n:], itoa(tmp[:], pid))
    	copy(buf[n:], notefile)
    	fd := open(&buf[0], _OWRITE, 0)
    	if fd < 0 {
    		return -1
    	}
    	len := findnull(&msg[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/CalculateArtifactsCodec.kt

            val artifacts by lazy {
                files.map { file ->
                    val artifactId = ComponentFileArtifactIdentifier(ownerId, file.file.name)
                    PreResolvedResolvableArtifact(null, DefaultIvyArtifactName.forFile(file.file, file.classifier), artifactId, file.file, TaskDependencyContainer.EMPTY, calculatedValueContainerFactory)
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

                IoActions.closeQuietly(out);
            }
        }
    
        public static void moveFile(File source, File destination) {
            logDeprecation();
            moveFileInternal(source, destination);
        }
    
        private static void moveFileInternal(File source, File destination) {
            try {
                FileUtils.moveFile(source, destination);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                    exe(NativeExecutableSpec)
                }
            }
    
            then:
            getComponents()
        }
    
        static class RootFileRules extends RuleSource {
            @Model
            File someFile(@Path("buildDir") File buildDir) { return new File(buildDir, "something") }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top