Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 258 for pouch (0.07 sec)

  1. src/crypto/cipher/cipher.go

    	//
    	// If len(dst) < len(src), XORKeyStream should panic. It is acceptable
    	// to pass a dst bigger than src, and in that case, XORKeyStream will
    	// only update dst[:len(src)] and will not touch the rest of dst.
    	//
    	// Multiple calls to XORKeyStream behave as if the concatenation of
    	// the src buffers was passed in a single run. That is, Stream
    	// maintains state and does not reset at each XORKeyStream call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactoryTest.groovy

            def otherJavaHome = tmpDir.createDir("other-java-home")
            otherJavaHome.createDir("bin")
            otherJavaHome.file(OperatingSystem.current().getExecutableName("bin/java")).touch()
            otherJavaHome.file(OperatingSystem.current().getExecutableName("bin/javac")).touch()
    
            def version = currentVM == 'current' ? Jvm.current().javaVersion.majorVersion : currentVM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperTest.groovy

                protected HttpClientResponse executeGetOrHead(HttpRequestBase method) {
                    throw new IOException("ouch")
                }
            }
    
            when:
            client.performRequest(new HttpGet("http://gradle.org"), false)
    
            then:
            HttpRequestException e = thrown()
            e.cause.message == "ouch"
        }
    
        def "response is closed if an error occurs during a request"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

    }
    
    apply plugin: SomePlugin
    """
        }
    
        protected void prepareMethodUseTest(GradleVersion targetVersion) {
            file("someFile").touch()
            file("anotherFile").touch()
            file("yetAnotherFile").touch()
            file("someDir").createDir()
    
            def apiDepConf = "implementation"
            if (targetVersion < GradleVersion.version("7.0-rc-1")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            def staleFileInDir = file("build/dir/stale-file.txt").touch()
            def fileInBuildDir = file("build/file").touch()
    
            expect:
            succeeds("myTask")
    
            when:
            invalidateBuildOutputCleanupState()
            dirInBuildDir.createDir()
            staleFileInDir.touch()
            fileInBuildDir.touch()
            then:
            succeeds("myTask")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCleanupExecutor.java

                    Timer timer = Time.startTimer();
                    try {
                        cacheCleanupStrategy.getCleanupAction().clean(cleanableStore, progressMonitor);
                        FileUtils.touch(gcFile);
                        LOGGER.info("{} cleaned up in {}.", cleanableStore.getDisplayName(), timer.getElapsed());
                        context.setResult(new CacheCleanupResult(progressMonitor.getDeleted(), lastCleanupTime));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesIntegrationTest.groovy

                version = '1.0'
    
                dependencies {
                    api 'org.gradle.swift:log:latest.integration'
                }
            """
            libraryPath.file("settings.gradle").touch()
            libraryRepo.commit("initial commit")
            libraryRepo.close()
        }
    
        private writeLogLibrary() {
            def logPath = file("log")
            def logRepo = GitFileRepository.init(logPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. src/test/resources/before_script.sh

    #!/bin/bash
    set -xuo pipefail
    
    temp_log_file=/tmp/fess-build.$$
    unzip target/releases/fess-*.zip > ${temp_log_file} 2>&1
    tail ${temp_log_file}
    
    ./fess-*/bin/fess > ${temp_log_file} 2>&1 &
    
    temp_json_file=/tmp/fess-log.$$
    touch ${temp_json_file}
    error_count=0
    while true ; do
      status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health")
      cat ${temp_json_file}
      if [[ x"${status}" = x200 ]] ; then
        break
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 863 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

        }
    
        def "prompts to overwrite files if any exist and defaults to no"() {
            given: "a file exists in the build directory"
            targetDir.file(defaultFileName).touch()
    
            when:
            def handle = startInteractiveExecutorWithTasks(
                "init",
                "--incubating",
                "--dsl", "groovy",
                "--type", "basic",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. pkg/volume/util/recyclerclient/recycler_client.go

    	}
    
    	return nil
    }
    
    // waitForPod watches the pod it until it finishes and send all events on the
    // pod to the PV.
    func waitForPod(pod *v1.Pod, recyclerClient recyclerClient, podCh <-chan watch.Event) error {
    	for {
    		event, ok := <-podCh
    		if !ok {
    			return fmt.Errorf("recycler pod %q watch channel had been closed", pod.Name)
    		}
    		switch event.Object.(type) {
    		case *v1.Pod:
    			// POD changed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top