Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 217 for modfile (0.19 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/groovy/build.gradle

    tasks.register('loadfile') {
        def resourceDirectory = file('./antLoadfileResources')
        doLast {
            def files = resourceDirectory.listFiles().sort()
            files.each { File file ->
                if (file.isFile()) {
                    ant.loadfile(srcFile: file, property: file.name)
                    println " *** $file.name ***"
                    println "${ant.properties[file.name]}"
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 423 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/kotlin/build.gradle.kts

    tasks.register("loadfile") {
        val resourceDirectory = file("./antLoadfileResources")
        doLast {
            val files = resourceDirectory.listFiles().sorted()
            files.forEach { file ->
                if (file.isFile) {
                    ant.withGroovyBuilder {
                        "loadfile"("srcFile" to file, "property" to file.name)
                    }
                    println(" *** ${file.name} ***")
                    println("${ant.properties[file.name]}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 493 bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

      <description>
        Verify that plugin executions defined in the parent with inherited=false are not executed in child modules.
      </description>
    
      <modules>
        <module>child-1</module>
        <module>child-2</module>
      </modules>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/failures/verificationFailure/groovy/build.gradle

    tasks.register("process") {
        def outputFile = layout.buildDirectory.file("processed.log")
        outputs.files(outputFile) // <1>
    
        doLast {
            def logFile = outputFile.get().asFile
            logFile << "Step 1 Complete." // <2>
            throw new VerificationException("Process failed!") // <3>
            logFile << "Step 2 Complete." // <4>
        }
    }
    
    tasks.register("postProcess") {
        inputs.files(tasks.named("process")) // <5>
    
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 20:19:24 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    stdout FAIL
    stdout 'mutator found enough unique mutations'
    
    -- go.mod --
    module m
    
    go 1.16
    -- fuzz_test.go --
    package fuzz_test
    
    import (
    	"flag"
    	"fmt"
    	"os"
    	"testing"
    )
    
    var (
    	logPath = flag.String("log", "", "path to log file")
    	logFile *os.File
    )
    
    func TestMain(m *testing.M) {
    	flag.Parse()
    	var err error
    	logFile, err = os.OpenFile(*logPath, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

    logFile = File("/tmp/key.log"), tlsVersions = tlsVersions, launch = launch)`
     * 3. Register with `client.eventListenerFactory(eventListenerFactory)`
     * 4. Launch wireshark if not done externally `val process = eventListenerFactory.launchWireShark()`
     */
    @SuppressSignatureCheck
    class WireSharkListenerFactory(
      private val logFile: File,
      private val tlsVersions: List<TlsVersion>,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/tests/antLoadfile.sample.conf

    # tag::cli[]
    # gradle --quiet loadfile
    # end::cli[]
    executable: gradle
    args: loadfile
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 139 bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml

                <id>equal-build-exec-id</id>
                <phase>initialize</phase>
                <goals>
                  <goal>reset</goal>
                </goals>
                <configuration>
                  <logFile>target/exec.log</logFile>
                  <string>test</string>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <reporting>
        <plugins>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/testing/fstest/mapfs_test.go

    	}
    	if err := TestFS(m, "hello", "fortune", "fortune/k", "fortune/k/ken.txt"); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestMapFSChmodDot(t *testing.T) {
    	m := MapFS{
    		"a/b.txt": &MapFile{Mode: 0666},
    		".":       &MapFile{Mode: 0777 | fs.ModeDir},
    	}
    	buf := new(strings.Builder)
    	fs.WalkDir(m, ".", func(path string, d fs.DirEntry, err error) error {
    		fi, err := d.Info()
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 14:59:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/DefaultMutableVariantFilesMetadata.java

        @Override
        public void removeAllFiles() {
            clearExistingFiles = true;
            files.clear();
        }
    
        @Override
        public void addFile(String name) {
            addFile(name, name);
        }
    
        @Override
        public void addFile(String name, String url) {
            for (VariantFileMetadata file : files) {
                if (file.getName().equals(name)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top