Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for jarName (0.11 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

        }
    
        private Set<String> output(String docsType) {
            file("a/build/$docsType").listFiles().collect { it.name } as Set
        }
    
        private ZipTestFixture jar(String jarName) {
            new ZipTestFixture(file("a/build/$jarName"))
        }
    
        private void subproject(String name, @DelegatesTo(value=FileTreeBuilder, strategy = Closure.DELEGATE_FIRST) Closure<Void> config) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

        }
    
        private Set<File> findDependencyJars(String moduleName, String[] jarNames) {
            Set<File> runtimeClasspath = new LinkedHashSet<>();
            for (String jarName : jarNames) {
                runtimeClasspath.add(findDependencyJar(moduleName, jarName));
            }
            return runtimeClasspath;
        }
    
        private Set<Module> getModules(String[] projectNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    #       The Groovy template language is run in two phases.
    #
    #        1. Any character following \ is passed unmodified through to the
    #           next phase, while the \ is removed. Any other $ followed by
    #           varName or {varName} is replaced by the value of that variable.
    #
    #        2. The result of the first phase is parsed and run in a similar
    #           manner to JSP or MASON or PHP: anything within < % ... % > is a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/bootstrap/config.go

    func substituteValues(patterns []string, varName string, values []string) []string {
    	ret := make([]string, 0, len(patterns))
    	for _, pattern := range patterns {
    		if !strings.Contains(pattern, varName) {
    			ret = append(ret, pattern)
    			continue
    		}
    
    		for _, val := range values {
    			ret = append(ret, strings.Replace(pattern, varName, val, -1))
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. configure.py

        else:
          syslibs = ','.join(sorted(syslibs.split()))
        write_action_env_to_bazelrc('TF_SYSTEM_LIBS', syslibs)
    
      for varname in ('PREFIX', 'LIBDIR', 'INCLUDEDIR', 'PROTOBUF_INCLUDE_PATH'):
        if varname in environ_cp:
          write_to_bazelrc('build --define=%s=%s' % (varname, environ_cp[varname]))
    
    
    def set_windows_build_flags(environ_cp):
      """Set Windows specific build options."""
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/syscall/mksyscall.pl

    			$trampolines{$funcname} = 1;
    			# The assembly trampoline that jumps to the libc routine.
    			$text .= "func ${funcname}_trampoline()\n\n";
    			# Tell the linker that funcname can be found in libSystem using varname without the libc_ prefix.
    			my $basename = substr $funcname, 5;
    			my $libc = "libc.so";
    			if ($darwin) {
    				$libc = "/usr/lib/libSystem.B.dylib";
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    }
    
    // cover runs, in effect,
    //
    //	go tool cover -mode=b.coverMode -var="varName" -o dst.go src.go
    func (b *Builder) cover(a *Action, dst, src string, varName string) error {
    	return b.Shell(a).run(a.Objdir, "", nil,
    		cfg.BuildToolexec,
    		base.Tool("cover"),
    		"-mode", a.Package.Internal.Cover.Mode,
    		"-var", varName,
    		"-o", dst,
    		src)
    }
    
    // cover2 runs, in effect,
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top