Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 168 for withers (0.13 sec)

  1. Jenkinsfile.s390x

            stage('Build / Unit Test') {
                String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk)
                String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
                try {
                    withEnv(["JAVA_HOME=${ tool "$jdkName" }",
                             "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",
                             "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {                   
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CompileOperation.java

     * A stateful “backing” for a compilation operation.
     * <p>
     * The compilation may extract data from the source under compilation, made available after compilation by {@link #getExtractedData()}.
     * The exposed transformer typically gathers the data while transforming.
     * <p>
     * As these objects are stateful, they can only be used for a single compile operation.
     *
     * @param <T> the type of data extracted by this operation
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 01 11:44:55 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

    import javax.annotation.CheckReturnValue;
    import java.io.File;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * <p>
     * Responsible for updating the file watchers based on changes to the contents of the virtual file system,
     * and changes to the file system hierarchies we are allowed to watch.</p>
     *
     * <p>
     * The following terms are worth distinguishing between:
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/crypto/cipher/cbc.go

    	return &cbc{
    		b:         b,
    		blockSize: b.BlockSize(),
    		iv:        bytes.Clone(iv),
    		tmp:       make([]byte, b.BlockSize()),
    	}
    }
    
    type cbcEncrypter cbc
    
    // cbcEncAble is an interface implemented by ciphers that have a specific
    // optimized implementation of CBC encryption, like crypto/aes.
    // NewCBCEncrypter will check for this interface and return the specific
    // BlockMode if found.
    type cbcEncAble interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleContainerExecuter.groovy

            }
            result
        }
    
        @CompileDynamic
        private OutputScrapingExecutionResult executeInContainer() {
            def invocation = buildInvocation()
            container.withEnv(invocation.environmentVars.collectEntries { k, v -> [k, v]})
            def containerResult = container.execute(["/gradle-under-test/bin/gradle", *invocation.args] as String[])
            def result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. tools/docker-builder/dockerfile/parse.go

    // Option is a functional option for remote operations.
    type Option func(*options) error
    
    type options struct {
    	args       map[string]string
    	ignoreRuns bool
    	baseDir    string
    }
    
    // WithArgs sets the input args to the dockerfile
    func WithArgs(a map[string]string) Option {
    	return func(o *options) error {
    		o.args = a
    		return nil
    	}
    }
    
    // IgnoreRuns tells the parser to ignore RUN statements rather than failing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      // TODO: Test blocking to re-enter monitor after being signaled.
      // TODO: Test interrupts with both interruptible and uninterruptible monitor.
      // TODO: Test multiple waiters: If guard is still satisfied, signal next waiter.
      // TODO: Test multiple waiters: If guard is no longer satisfied, do not signal next waiter.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      // TODO: Test blocking to re-enter monitor after being signaled.
      // TODO: Test interrupts with both interruptible and uninterruptible monitor.
      // TODO: Test multiple waiters: If guard is still satisfied, signal next waiter.
      // TODO: Test multiple waiters: If guard is no longer satisfied, do not signal next waiter.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            buildTriggeredAndFailed()
            executedAndNotSkipped ":compileJava"
        }
    
        @Requires(UnitTestPreconditions.NotLinux)
        def "creation of initial source file triggers build for hierarchical watchers"() {
            expect:
            succeeds("build")
            skipped(":compileJava")
            executed(":build")
    
            when:
            file("src/main/java/Thing.java") << "class Thing {}"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/EncryptionAlgorithm.java

        }
    
        interface IVCollector {
            void collect(byte[] toCollect) throws IOException;
        }
    
        /**
         * Combines an algorithm and a key, and allows obtaining encryption/decryption ciphers according to those.
         */
        interface Session {
            SecretKey getKey();
            EncryptionAlgorithm getAlgorithm();
            Cipher encryptingCipher(IVCollector collector);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top