Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 434 for sysdir (0.13 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesFilesMiscIntegrationTest.groovy

            when:
            succeeds('cleanTempFiles')
    
            then:
            def srcDir = dslDir.file('src')
            srcDir.file("notes.txt.tmp").assertDoesNotExist()
            srcDir.file("README.md").isFile()
            srcDir.file("main/webapp/web.xml.tmp").assertDoesNotExist()
            srcDir.file("main/webapp/web.xml").isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/pgo_inl_test.go

    	if err != nil {
    		t.Fatalf("error getting wd: %v", err)
    	}
    	srcDir := filepath.Join(wd, "testdata/pgo/inline")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    	dir := t.TempDir()
    
    	for _, file := range []string{"inline_hot.go", "inline_hot_test.go", profFile} {
    		if err := copyFile(filepath.Join(dir, file), filepath.Join(srcDir, file)); err != nil {
    			t.Fatalf("error copying %s: %v", file, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

    Root project
    ------------------------------------------------------------
    
    Native library 'hello'
    ----------------------
    
    Source sets
        C++ source 'hello:cpp'
            srcDir: src/hello/cpp
    
    Binaries
        Shared library 'hello:sharedLibrary'
            build using task: :helloSharedLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/environment/JreJavaHomeGroovyIntegrationTest.groovy

        }
    
        private writeJavaTestSource(String srcDir, String clazzName = "JavaClazz") {
            file(srcDir, "org/test/${clazzName}.java") << """
                package org.test;
                public class ${clazzName} {
                    public static void main(String... args){
    
                    }
                }
                """
        }
    
        private writeGroovyTestSource(String srcDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/syndtr/gocapability/LICENSE

    = vendor/github.com/syndtr/gocapability licensed under: =
    
    Copyright 2013 Suryandaru Triandana <syndtr@gmail.com>
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
        * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/git_test.go

    			},
    		},
    
    		{
    			repo:   gitrepo1,
    			rev:    "aaaaaaaaab",
    			subdir: "",
    			err:    "unknown revision",
    		},
    		{
    			repo:   hgrepo1,
    			rev:    "aaaaaaaaab",
    			subdir: "",
    			err:    "unknown revision",
    		},
    
    		{
    			repo:   vgotest1,
    			rev:    "submod/v1.0.4",
    			subdir: "submod",
    			files: map[string]uint64{
    				"prefix/":                0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_gobuild_import.txt

    	"path/filepath"
    	"strings"
    )
    
    func main() {
    	// build.Import should support relative and absolute source dir paths.
    	path := os.Args[1]
    	srcDir := os.Args[2]
    	p1, err := build.Import(path, srcDir, 0)
    	if err != nil {
    		log.Fatal(err)
    	}
    	absSrcDir, err := filepath.Abs(srcDir)
    	if err != nil {
    		log.Fatal(err)
    	}
    	p2, err := build.Import(path, absSrcDir, 0)
    	if err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/customModel/languageType/tests/softwareModelExtend-components.out

    ------------------------------------------------------------
    
    DocumentationComponent 'docs'
    -----------------------------
    
    Source sets
        Markdown source 'docs:userguide'
            srcDir: src/docs/userguide
        Text source 'docs:reference'
            srcDir: src/docs/reference
    
    Binaries
        DocumentationBinary 'docs:exploded'
            build using task: :docsExploded
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 559 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

                } else {
                    for (File srcDir : fileCollectionFactory.resolving(path)) {
                        if (!srcDir.isDirectory() && srcDir.exists()) {
                            throw new InvalidUserDataException(String.format("Source directory '%s' is not a directory.", srcDir));
                        }
                        result.add(directoryFileTreeFactory.create(srcDir, patterns));
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/go/build/build_test.go

    			t.Logf("%q expands to %q with SRCDIR=%q", test.input, output, expandSrcDirPath)
    		}
    	}
    }
    
    func TestShellSafety(t *testing.T) {
    	tests := []struct {
    		input, srcdir, expected string
    		result                  bool
    	}{
    		{"-I${SRCDIR}/../include", "/projects/src/issue 11868", "-I/projects/src/issue 11868/../include", true},
    		{"-I${SRCDIR}", "~wtf$@%^", "-I~wtf$@%^", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top