Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for cherries (0.1 sec)

  1. src/crypto/internal/edwards25519/field/fe_generic.go

    	// according to the reduction identity and added to the lowest limb.
    	//
    	// The largest coefficient (r0) will be at most 111 bits, which guarantees
    	// that all carries are at most 111 - 51 = 60 bits, which fits in a uint64.
    	//
    	//     r0 = a0×b0 + 19×(a1×b4 + a2×b3 + a3×b2 + a4×b1)
    	//     r0 < 2⁵²×2⁵² + 19×(2⁵²×2⁵² + 2⁵²×2⁵² + 2⁵²×2⁵² + 2⁵²×2⁵²)
    	//     r0 < (1 + 19 × 4) × 2⁵² × 2⁵²
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Describes a problem that was encountered during project building. A problem can either be an exception that was
     * thrown or a simple string message. In addition, a problem carries a hint about its source.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface BuilderProblem {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

     */
    package org.apache.maven.model.building;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    public interface ModelProblem {
    
        /**
         * The different severity levels for a problem, in decreasing order.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ScriptDependencyResolveIntegrationTest.groovy

        }
    }
    
    rootProject.name = 'testproject'
    """
            expect:
            fails "help"
            failureHasCause("Conflict found for the following module:")
        }
    
        @Issue("gradle/gradle#19300")
        def 'carries implicit constraint for log4j-core'() {
            given:
            mavenRepo().module('org.apache.logging.log4j', 'log4j-core', '2.17.1').publish()
    
            and:
            settingsFile << """
                buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProblem.java

    import org.apache.maven.api.services.ModelProblem;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    public class DefaultModelProblem implements ModelProblem {
    
        private final String source;
    
        private final int lineNumber;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

         *
         * <p>The {@link FileCollection} carries the task dependencies required to build the files in the result, and when used as a task input the files will be built before the task executes.</p>
         *
         * @return The collection. Never null.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    	"fmt"
    	"net/http"
    	"time"
    
    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/features"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    
    	"k8s.io/klog/v2"
    )
    
    // WorkEstimate carries three of the four parameters that determine the work in a request.
    // The fourth parameter is the duration of the initial phase of execution.
    type WorkEstimate struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    		ifr.raw.Ifru[i] = 0
    	}
    }
    
    // TODO(mdlayher): export as IfreqData? For now we can provide helpers such as
    // IoctlGetEthtoolDrvinfo which use these APIs under the hood.
    
    // An ifreqData is an Ifreq which carries pointer data. To produce an ifreqData,
    // use the Ifreq.withData method.
    type ifreqData struct {
    	name [IFNAMSIZ]byte
    	// A type separate from ifreq is required in order to comply with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

      Region region;
      region.push_back(new Block);
    
      // Move all operations in cluster to newly created region, stripping their
      // "device" attribute since launch op already carries device information.
      Block* block = &region.front();
      for (Operation* op : c.ops) {
        op->moveBefore(block, block->end());
        op->removeAttr(builder->getStringAttr("device"));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            "files.empty"           | "false"
            "files.contains(file1)" | "true"
        }
    
        @Issue('https://github.com/gradle/gradle/issues/26352')
        def 'intricate ConfigurableFileCollection filter chain carries task dependencies'() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and:
            buildFile '''
                abstract class ConcatTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top