Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for doGenerate (0.23 sec)

  1. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/TomlFileGenerator.java

            File outputDir = outputFile.getParentFile();
            if (outputDir.exists() || outputFile.mkdirs()) {
                doGenerate(model, outputFile);
            } else {
                throw new GradleException("Unable to generate TOML dependencies file into " + outputDir);
            }
        }
    
        private void doGenerate(DefaultVersionCatalog model, File outputFile) throws FileNotFoundException, UnsupportedEncodingException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/GenerateIvyDescriptor.java

         * @param destination The file the descriptor will be written to.
         */
        public void setDestination(Object destination) {
            this.destination = destination;
        }
    
        @TaskAction
        public void doGenerate() {
             ivyDescriptorSpec.get().writeTo(getDestination());
        }
    
        IvyDescriptorFileGenerator.DescriptorFileSpec computeIvyDescriptorFileSpec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/GenerateMavenPom.java

         * @param destination The file the descriptor will be written to.
         */
        public void setDestination(Object destination) {
            this.destination = destination;
        }
    
        @TaskAction
        public void doGenerate() {
            mavenPomSpec.get().writeTo(getDestination());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

     *
     * To force selection of our fallback strategies we load {@link AbstractFuture} (and all of {@code
     * com.google.common.util.concurrent}) in degenerate class loaders which make certain platform
     * classes unavailable. Then we construct a test suite so we can run the normal AbstractFutureTest
     * test methods in these degenerate classloaders.
     */
    
    public class AbstractFutureFallbackAtomicHelperTest extends TestCase {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

     *
     * To force selection of our fallback strategies we load {@link AbstractFuture} (and all of {@code
     * com.google.common.util.concurrent}) in degenerate class loaders which make certain platform
     * classes unavailable. Then we construct a test suite so we can run the normal AbstractFutureTest
     * test methods in these degenerate classloaders.
     */
    
    public class AbstractFutureFallbackAtomicHelperTest extends TestCase {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

       * compressed stream that is terminated in a web socket frame even though the DEFLATE stream is
       * not terminated.
       *
       * Use this method to create a degenerate Okio Buffer where each byte is in a separate segment of
       * the internal list.
       */
      @JvmStatic
      fun fragmentBuffer(buffer: Buffer): Buffer {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/internal/trace/mud.go

    // distribution). This makes it easier to work with as it's being
    // updated.
    //
    // It is represented as the sum of scaled uniform distribution
    // functions and Dirac delta functions (which are treated as
    // degenerate uniform distributions).
    type mud struct {
    	sorted, unsorted []edge
    
    	// trackMass is the inverse cumulative sum to track as the
    	// distribution is updated.
    	trackMass float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/crypto/dsa/dsa.go

    		z := k.SetBytes(hash)
    
    		s = new(big.Int).Mul(priv.X, r)
    		s.Add(s, z)
    		s.Mod(s, priv.Q)
    		s.Mul(s, kInv)
    		s.Mod(s, priv.Q)
    
    		if s.Sign() != 0 {
    			break
    		}
    	}
    
    	// Only degenerate private keys will require more than a handful of
    	// attempts.
    	if attempts == 0 {
    		return nil, nil, ErrInvalidPublicKey
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top