Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for makefile (0.32 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

            val fakeFile = object : KtFile(KtClassFileViewProvider(psiManager, fileContent.file), isCompiled = true) {
                override fun getStub() = ktFileStub
    
                override fun isPhysical() = false
            }
            ktFileStub.psi = fakeFile
            createdFakeKtFiles.add(fakeFile)
            return ktFileStub
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

        @Override
        public void onArtifact(ArtifactKind kind, ModuleComponentArtifactIdentifier artifact, File mainFile, Factory<File> signatureFile, String repositoryName, String repositoryId) {
            if (verificationQueries.add(new VerificationQuery(artifact, repositoryId))) {
                VerificationEvent event = new VerificationEvent(kind, artifact, mainFile, signatureFile, repositoryName);
                synchronized (verificationEvents) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

                FirErrors.DSL_SCOPE_VIOLATION,
            ).map { it.name }
        }
    
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
            val testFile = mainModule.testModule.files.single { it.name == mainFile.name }
    
            val annotationToCheckCalls = mainModule.testModule.directives[Directives.CHECK_CALLS_WITH_ANNOTATION].singleOrNull()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/encoding/asn1/marshal.go

    		}
    
    		switch n1 := n - startingField; n1 {
    		case 0:
    			return bytesEncoder(nil), nil
    		case 1:
    			return makeField(v.Field(startingField), parseFieldParameters(t.Field(startingField).Tag.Get("asn1")))
    		default:
    			m := make([]encoder, n1)
    			for i := 0; i < n1; i++ {
    				m[i], err = makeField(v.Field(i+startingField), parseFieldParameters(t.Field(i+startingField).Tag.Get("asn1")))
    				if err != nil {
    					return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/AbstractProjectGeneratorTask.groovy

            File destFile = new File(projectDir, name).absoluteFile
            File baseFile = resolveTemplate(templateName)
    
            List<File> templateFiles = []
            if (baseFile.exists()) {
                templateFiles << baseFile
            }
            List<String> templates = templateArgs.templates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            } finally {
                IoActions.closeQuietly(out);
            }
        }
    
        public static void moveFile(File source, File destination) {
            try {
                FileUtils.moveFile(source, destination);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/staticpods.go

    }
    
    // MoveFile should move a file from oldPath to newPath
    func (spm *KubeStaticPodPathManager) MoveFile(oldPath, newPath string) error {
    	return kubeadmutil.MoveFile(oldPath, newPath)
    }
    
    // KubernetesDir should point to the directory Kubernetes owns for storing various configuration files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

        public void onArtifact(ArtifactKind kind, ModuleComponentArtifactIdentifier id, File mainFile, Factory<File> signatureFile, String repositoryName, String repositoryId) {
            for (String checksum : checksums) {
                if (PGP.equals(checksum)) {
                    addPgp(id, kind, mainFile, signatureFile);
                } else {
                    addChecksum(id, kind, mainFile, ChecksumKind.valueOf(checksum));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/conntest.go

    	"net"
    	"runtime"
    	"sync"
    	"testing"
    	"time"
    )
    
    // MakePipe creates a connection between two endpoints and returns the pair
    // as c1 and c2, such that anything written to c1 is read by c2 and vice-versa.
    // The stop function closes all resources, including c1, c2, and the underlying
    // net.Listener (if there is one), and should not be nil.
    type MakePipe func() (c1, c2 net.Conn, stop func(), err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/cache/internal/WrapperDistributionCleanupAction.java

                    boolean canBeDeleted = true;
                    if (markerFiles!=null) {
                        for (File markerFile : markerFiles) {
                            canBeDeleted &= markerFile.delete();
                        }
                    }
                    if (canBeDeleted) {
                        if (FileUtils.deleteQuietly(checksumDir)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top