Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 258 for pouch (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

            otherFile.assertDoesNotExist()
    
            when:
            // write into the directory used by the extracted zip file
            cachedFile.text = "some incorrect pre-existing pre-expanded content"
            otherFile.touch()
    
            and:
            succeeds "extract"
            then:
            // the file is not extracted again and retains the modified content
            cachedFile.text == "some incorrect pre-existing pre-expanded content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            def unzippedDir = file("before/files")
            def unzippedFile = unzippedDir.file("sub/c.txt").touch()
    
            and: "another directory with the same file"
            def unzippedDir2 = file("before2/files")
            def unzippedFile2 = unzippedDir2.file("sub/c2.txt").touch()
    
            and: "a copy task that copies from both of these, failing on duplicates"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

                }
            """
    
            when:
            // presence of buildSrc build causes IllegalStateException for the execution below
            buildB.file("buildSrc/build.gradle").touch()
    
            then:
            execute(buildA, ":buildC:dependencies")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15659")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  4. plugin/pkg/admission/defaulttolerationseconds/admission.go

    // that tolerate taints `notReady:NoExecute` and `unreachable:NoExecute`,
    // with tolerationSeconds of 300s.
    // If the pod already specifies a toleration for taint `notReady:NoExecute`
    // or `unreachable:NoExecute`, the plugin won't touch it.
    type Plugin struct {
    	*admission.Handler
    }
    
    var _ admission.MutationInterface = &Plugin{}
    
    // NewDefaultTolerationSeconds creates a new instance of the DefaultTolerationSeconds admission controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

                    </goals>
                  </execution>
                </executions>
              </plugin>
              <plugin>
                <groupId>org.apache.maven.its.plugins</groupId>
                <artifactId>maven-it-plugin-touch</artifactId>
                <version>2.1-SNAPSHOT</version>
              </plugin>
            </plugins>
          </build>
        </profile>
      </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_find.txt

    cd $GOPATH/src/example.com/x/y
    go mod init
    stderr 'module example.com/x/y$'
    rm go.mod
    
    # go mod init rejects a zero-length go.mod file
    cp $devnull go.mod # can't use touch to create it because Windows
    ! go mod init
    stderr 'go.mod already exists'
    
    # Module path from Godeps/Godeps.json overrides GOPATH.
    cd $GOPATH/src/example.com/x/y/z
    go mod init
    stderr 'unexpected.com/z'
    rm go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

            // are not considered to be of the same workspace
            scopeIds.disableConsistentWorkspaceIdCheck = true
    
            when:
            file("other/settings.gradle").touch()
            buildScript """
                task t(type: GradleBuild) {
                    dir = file("other")
                }
            """
    
            then:
            succeeds "t"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/plugins/GroovyJarFileTest.groovy

        }
    
        def "parse symlinked Jar"(String symlinkName, String fileName, String version, String dependencyNotation) {
            def actualFile = tmpDir.file(fileName).touch()
            def symlinkFile = tmpDir.file(symlinkName).createLink(actualFile)
    
            def jar = GroovyJarFile.parse(symlinkFile)
    
            expect:
            jar != null
            jar.file == actualFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 20:09:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/test/util.go

    	tmpdir, err := os.MkdirTemp("", "")
    	if err != nil {
    		t.Fatalf("Couldn't create tmpdir")
    	}
    
    	return tmpdir
    }
    
    // SetupEmptyFiles is a utility function for kubeadm testing that creates one or more empty files (touch)
    func SetupEmptyFiles(t *testing.T, tmpdir string, fileNames ...string) {
    	for _, fileName := range fileNames {
    		newFile, err := os.Create(filepath.Join(tmpdir, fileName))
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/plugins/GroovyPluginTest.groovy

            given:
            groovyPlugin.apply(project)
    
            when:
            project.sourceSets.main.groovy.srcDirs(temporaryFolder.getTestDirectory())
            temporaryFolder.file("SomeFile.groovy").touch()
            def task = project.tasks[GroovyPlugin.GROOVYDOC_TASK_NAME]
    
            then:
            task instanceof Groovydoc
            task.destinationDir == new File(project.docsDir, 'groovydoc')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top