Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 217 for modfile (0.19 sec)

  1. platforms/documentation/docs/src/snippets/java-library/module/kotlin/src/main/java/module-info.java

    module org.gradle.sample.lib {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 212 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/application/kotlin/src/main/java/module-info.java

    module org.gradle.sample.app {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/patch-module/kotlin/src/main/java/module-info.java

    module org.gradle.sample {
        exports org.gradle.sample;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/config.go

    	// Make a local copy.
    	s := *settingsFromCommandline
    
    	iopFile := s.PrimaryClusterIOPFile
    	if iopFile != "" && !path.IsAbs(s.PrimaryClusterIOPFile) {
    		iopFile = filepath.Join(env.IstioSrc, s.PrimaryClusterIOPFile)
    	}
    
    	if err := checkFileExists(iopFile); err != nil {
    		scopes.Framework.Warnf("Default IOPFile missing: %v", err)
    	}
    
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/go/ast/import.go

    	endSpecs := pos[len(pos)-1].End
    	beg := fset.File(begSpecs).LineStart(lineAt(fset, begSpecs))
    	endLine := lineAt(fset, endSpecs)
    	endFile := fset.File(endSpecs)
    	var end token.Pos
    	if endLine == endFile.LineCount() {
    		end = endSpecs
    	} else {
    		end = endFile.LineStart(endLine + 1) // beginning of next line
    	}
    	first := len(f.Comments)
    	last := -1
    	for i, g := range f.Comments {
    		if g.End() >= end {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/pack/pack_test.go

    func TestTableOfContents(t *testing.T) {
    	dir := t.TempDir()
    	name := filepath.Join(dir, "pack.a")
    	ar := openArchive(name, os.O_RDWR|os.O_CREATE, nil)
    
    	// Add some entries by hand.
    	ar.addFile(helloFile.Reset())
    	ar.addFile(goodbyeFile.Reset())
    	ar.a.File().Close()
    
    	// Now print it.
    	var buf strings.Builder
    	stdout = &buf
    	verbose = true
    	defer func() {
    		stdout = os.Stdout
    		verbose = false
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/dependencies-with-attributes.module

                        "module": "m2"
                    },
                    {
                        "group": "g3",
                        "module": "m3",
                        "version": {
                            "prefers": "v3"
                        },
                        "excludes": [
                            {
                                "group": "gx",
                                "module": "mx"
                            },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    # under the License.
    
    org.slf4j.simpleLogger.defaultLogLevel=info
    org.slf4j.simpleLogger.showDateTime=false
    org.slf4j.simpleLogger.showThreadName=false
    org.slf4j.simpleLogger.showLogName=false
    org.slf4j.simpleLogger.logFile=System.out
    org.slf4j.simpleLogger.cacheOutputStream=true
    org.slf4j.simpleLogger.levelInBrackets=true
    org.slf4j.simpleLogger.log.Sisu=info
    org.slf4j.simpleLogger.warnLevelString=WARNING
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 16 16:19:23 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    }
    
    // Common install on a either a remote-config or pure remote cluster.
    func (i *istioImpl) installRemoteCommon(c cluster.Cluster, defaultsIOPFile, iopFile string, discovery bool) error {
    	args := commonInstallArgs(i.ctx, i.cfg, c, defaultsIOPFile, iopFile)
    	if i.env.IsMultiCluster() {
    		// Set the clusterName for the local cluster.
    		// This MUST match the clusterName in the remote secret for this cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

    import org.jetbrains.kotlin.psi.KtFile
    import java.io.File
    import java.nio.file.Path
    
    object SymbolByFqName {
        fun getSymbolDataFromFile(filePath: Path): SymbolData {
            val testFileText = FileUtil.loadFile(filePath.toFile())
            val identifier = testFileText.lineSequence().first { line ->
                SymbolData.identifiers.any { identifier ->
                    line.startsWith(identifier) || line.startsWith("// $identifier")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top