Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 137 for sysdir (0.18 sec)

  1. src/cmd/go/internal/modfetch/codehost/git.go

    	if old == nil {
    		return fmt.Errorf("missing origin")
    	}
    	if old.VCS != "git" || old.URL != r.remoteURL {
    		return fmt.Errorf("origin moved from %v %q to %v %q", old.VCS, old.URL, "git", r.remoteURL)
    	}
    	if old.Subdir != subdir {
    		return fmt.Errorf("origin moved from %v %q %q to %v %q %q", old.VCS, old.URL, old.Subdir, "git", r.remoteURL, subdir)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// remains up to date. If so, whatever cached object it was
    	// taken from can be reused.
    	// The subdir gives subdirectory name where the module root is expected to be found,
    	// "" for the root or "sub/dir" for a subdirectory (no trailing slash).
    	CheckReuse(ctx context.Context, old *Origin, subdir string) error
    
    	// Tags lists all tags with the given prefix.
    	Tags(ctx context.Context, prefix string) (*Tags, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/reuse_git.txt

    ! stdout '"Reuse": true'
    stdout '"URL": ".*/git/tagtests"'
    
    # reuse with stale Dir
    cp tagtestsv022.json tagtestsv022baddir.json
    replace '\t\t\"Ref\":' '\t\t\"Subdir\": \"subdir\",\n\t\t\"Ref\":' tagtestsv022baddir.json
    go mod download -reuse=tagtestsv022baddir.json -x -json vcs-test.golang.org/git/tagtests.git@v0.2.2
    ! stdout '"Reuse": true'
    stdout '"URL": ".*/git/tagtests"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/cache.go

    	// We subtract an additional mtimeInterval
    	// to account for the imprecision of our "last used" mtimes.
    	cutoff := now.Add(-trimLimit - mtimeInterval)
    	for i := 0; i < 256; i++ {
    		subdir := filepath.Join(c.dir, fmt.Sprintf("%02x", i))
    		c.trimSubdir(subdir, cutoff)
    	}
    
    	// Ignore errors from here: if we don't write the complete timestamp, the
    	// cache will appear older than it is, and we'll trim it again next time.
    	var b bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

            succeeds "components"
            then:
            output.contains("""
    SampleLibrary 'sampleLib'
    -------------------------
    
    Source sets
        Library source 'sampleLib:librarySource'
            srcDir: src${File.separator}sampleLib${File.separator}librarySource
    
    Binaries
        SampleBinary 'sampleLib:binary'
            build using task: :sampleLibBinary
        OtherSampleBinary 'sampleLib:otherBinary'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. src/syscall/zerrors_windows.go

    	EDEADLK
    	EDEADLOCK
    	EDESTADDRREQ
    	EDOM
    	EDOTDOT
    	EDQUOT
    	EEXIST
    	EFAULT
    	EFBIG
    	EHOSTDOWN
    	EHOSTUNREACH
    	EIDRM
    	EILSEQ
    	EINPROGRESS
    	EINTR
    	EINVAL
    	EIO
    	EISCONN
    	EISDIR
    	EISNAM
    	EKEYEXPIRED
    	EKEYREJECTED
    	EKEYREVOKED
    	EL2HLT
    	EL2NSYNC
    	EL3HLT
    	EL3RST
    	ELIBACC
    	ELIBBAD
    	ELIBEXEC
    	ELIBMAX
    	ELIBSCN
    	ELNRNG
    	ELOOP
    	EMEDIUMTYPE
    	EMFILE
    	EMLINK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

            def sources = generatedCode.values().collect {
                new TestClassSource(it.className, it.generatedCode)
            }
            def srcDir = tmpDir.createDir("src")
            def dstDir = tmpDir.createDir("dst")
            SimpleGeneratedJavaClassCompiler.compile(srcDir, dstDir, sources, classPath)
            def cl = new URLClassLoader([dstDir.toURI().toURL()] as URL[], this.class.classLoader)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                            continue;
                        }
                        subdir = path;
                    }
                    // When the same module is found in main and test output, the latter is patching the former.
                    addPathElement(JavaPathType.patchModule(moduleName), subdir);
                    addToClasspath = false;
                }
                /*
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/gcimporter_test.go

    		t.Logf("%s", out)
    		t.Fatalf("go tool compile %s failed: %s", filename, err)
    	}
    	return outname
    }
    
    func testPath(t *testing.T, path, srcDir string) *types.Package {
    	t0 := time.Now()
    	fset := token.NewFileSet()
    	pkg, err := Import(fset, make(map[string]*types.Package), path, srcDir, nil)
    	if err != nil {
    		t.Errorf("testPath(%s): %s", path, err)
    		return nil
    	}
    	t.Logf("testPath(%s): %v", path, time.Since(t0))
    	return pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. src/go/types/generate_test.go

    	"go/token"
    	"internal/diff"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    var filesToWrite = flag.String("write", "", `go/types files to generate, or "all" for all files`)
    
    const (
    	srcDir = "/src/cmd/compile/internal/types2/"
    	dstDir = "/src/go/types/"
    )
    
    // TestGenerate verifies that generated files in go/types match their types2
    // counterpart. If -write is set, this test actually writes the expected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top