Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for subdir (0.17 sec)

  1. hack/lib/init.sh

    # Where output goes.  We should avoid redefining these anywhere else.
    #
    # KUBE_OUTPUT: the root directory (absolute) where this build should drop any
    #     files (subdirs are encouraged).
    # KUBE_OUTPUT_BIN: the directory in which compiled binaries will be placed,
    #     under OS/ARCH specific subdirs
    # THIS_PLATFORM_BIN: a symlink to the output directory for binaries built for
    #     the current host platform (e.g. build/test tools).
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            executedAndNotSkipped ":compileJava"
        }
    
        def "multiple dependencies as inputs from local filesystem"() {
            when:
            def libDir = file('libs').createDir()
            jarWithClasses(libDir.file("somelib.jar"), Thing: 'interface Thing {}')
            def anotherJar = libDir.file("anotherlib.jar")
            jarWithClasses(anotherJar, Thing2: 'interface Thing2 {}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

            def link = project.tasks[taskName]
            link instanceof LinkSharedLibrary
            link.linkedFile.get().asFile == projectDir.file("build/lib/${libDir}" + OperatingSystem.current().getSharedLibraryName("test_lib"))
    
            where:
            name        | taskName        | libDir
            "main"      | "link"          | "main/"
            "mainDebug" | "linkDebug"     | "main/debug/"
            "test"      | "linkTest"      | "test/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/ExecJob.java

            }
        }
    
        protected void appendJarFile(final String cpSeparator, final StringBuilder buf, final File libDir, final String basePath) {
            final File[] jarFiles = libDir.listFiles((FilenameFilter) (dir, name) -> name.toLowerCase().endsWith(".jar"));
            if (jarFiles != null) {
                for (final File file : jarFiles) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/PreCreateOutputParentsStepTest.groovy

    class PreCreateOutputParentsStepTest extends StepSpec<ChangingOutputsContext> {
        def step = new PreCreateOutputParentsStep<>(delegate)
    
        def "outputs are created"() {
            given:
            def outputDir = file("outDir")
            def outputFile = file("parent/outFile")
            def localStateFile = file("local-state/stateFile")
            def destroyableFile = file("destroyable/file.txt")
    
            when:
            step.execute(work, context)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            "<a href=\"../\">link</a>"                          | "links to parent URLs of base URL"
            "<a href=\"http://[2h:23:3]\">link</a>"             | "invalid URLs"
            "<a href=\"dir1/subdir1\">link</a>"                 | "links to nested subdirectories"
            "<![CDATA[<a href=\"directory2\">directory2</a>]]>" | "links in CDATA blocks"
            "<a href=\"#anchor\">link</a>"                      | "anchor links"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/ld.go

    		if pname == "" {
    			ctxt.Logf("cannot find package %s (using -importcfg)\n", name)
    			return "", false
    		}
    	} else {
    		pkg := pkgname(ctxt, lib)
    
    		// search -L "libdir" directories
    		for _, dir := range ctxt.Libdir {
    			if ctxt.linkShared {
    				pname = filepath.Join(dir, pkg+".shlibname")
    				if _, err := os.Stat(pname); err == nil {
    					isshlib = true
    					break
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pkg/test/framework/suitecontext.go

    	traces       sync.Map
    }
    
    func newSuiteContext(s *resource.Settings, envFn resource.EnvironmentFactory, labels label.Set) (*suiteContext, error) {
    	scopeID := fmt.Sprintf("[suite(%s)]", s.TestID)
    
    	workDir := path.Join(s.RunDir(), "_suite_context")
    	if err := os.MkdirAll(workDir, os.ModePerm); err != nil {
    		return nil, err
    	}
    	c := &suiteContext{
    		settings:     s,
    		globalScope:  newScope(scopeID, nil),
    		workDir:      workDir,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    index a253698..2f4e2a9 100644
    --- a/support/Makefile
    +++ b/support/Makefile
    @@ -167,13 +167,6 @@ CFLAGS-support_paths.c = \
     		-DINSTDIR_PATH=\"$(prefix)\" \
     		-DLIBDIR_PATH=\"$(libdir)\"
     
    -ifeq (,$(CXX))
    -LINKS_DSO_PROGRAM = links-dso-program-c
    -else
    -LINKS_DSO_PROGRAM = links-dso-program
    -LDLIBS-links-dso-program = -lstdc++ -lgcc -lgcc_s $(libunwind)
    -endif
    -
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top