Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for AddFile (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializer.java

            }
    
            private void readVariantFiles(MutableComponentVariant variant) throws IOException {
                int count = decoder.readSmallInt();
                for (int i = 0; i < count; i++) {
                    variant.addFile(decoder.readString(), decoder.readString());
                }
            }
    
            private void readVariantCapabilities(MutableComponentVariant variant) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

                    attribute(DocsType.DOCS_TYPE_ATTRIBUTE, getObjects().named(DocsType, "pom"))
                }
                withFiles {
                    removeAllFiles()
                    addFile("\${context.details.id.name}-\${context.details.id.version}.pom")
                }
            }
        }
    }
    
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

                                ac.attribute(DocsType.DOCS_TYPE_ATTRIBUTE, docsType)
                            }
                            vm.withFiles {
                                it.addFile("\${id.name}-\${id.version}-\${variant}.jar")
                            }
                        }
    
                    }
                }
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Then we set the `TARGET_JVM_VERSION_ATTRIBUTE` to `8` for both variants, remove any existing file from the new variants with `removeAllFiles()`, and add the jdk8 jar file with `addFile()`.
    The `removeAllFiles()` is needed, because the reference to the main jar `quasar-core-0.7.5.jar` is copied from the corresponding base variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    	var m uint = scanner.InsertSemis
    	if mode&ParseComments != 0 {
    		m |= scanner.ScanComments
    	}
    	return m
    }
    
    func (p *parser) init(fset *token.FileSet, filename string, src []byte, mode uint) {
    	p.file = fset.AddFile(filename, fset.Base(), len(src))
    	p.scanner.Init(p.file, src, p, scannerMode(mode))
    
    	p.mode = mode
    	p.trace = mode&Trace != 0 // for convenience (p.trace is used frequently)
    
    	p.next()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    	// nestLev is used to track and limit the recursion depth
    	// during parsing.
    	nestLev int
    }
    
    func (p *parser) init(fset *token.FileSet, filename string, src []byte, mode Mode) {
    	p.file = fset.AddFile(filename, -1, len(src))
    	eh := func(pos token.Position, msg string) { p.errors.Add(pos, msg) }
    	p.scanner.Init(p.file, src, eh, scanner.ScanComments)
    
    	p.top = true
    	p.mode = mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*File).Position", Method, 0},
    		{"(*File).PositionFor", Method, 4},
    		{"(*File).SetLines", Method, 0},
    		{"(*File).SetLinesForContent", Method, 0},
    		{"(*File).Size", Method, 0},
    		{"(*FileSet).AddFile", Method, 0},
    		{"(*FileSet).Base", Method, 0},
    		{"(*FileSet).File", Method, 0},
    		{"(*FileSet).Iterate", Method, 0},
    		{"(*FileSet).Position", Method, 0},
    		{"(*FileSet).PositionFor", Method, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg go/token, method (*File) SetLines([]int) bool
    pkg go/token, method (*File) SetLinesForContent([]uint8)
    pkg go/token, method (*File) Size() int
    pkg go/token, method (*FileSet) AddFile(string, int, int) *File
    pkg go/token, method (*FileSet) Base() int
    pkg go/token, method (*FileSet) File(Pos) *File
    pkg go/token, method (*FileSet) Iterate(func(*File) bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top