Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,794 for baseIdx (0.25 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

                connection.getModel(ProjectPublications)
            }
    
            then:
            publications.publications.empty
        }
    
        @TargetGradleVersion(">=3.0 <7.0")
        def "Ivy repository based publication"() {
            settingsFile << "rootProject.name = 'test.project'"
            buildFile <<
    """
    apply plugin: "base"
    
    version = 1.0
    group = "test.group"
    
    uploadArchives {
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. plugin/pkg/admission/deny/admission.go

    var _ admission.ValidationInterface = alwaysDeny{}
    
    // Admit makes an admission decision based on the request attributes.
    func (alwaysDeny) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	return admission.NewForbidden(a, errors.New("admission control is denying all modifications"))
    }
    
    // Validate makes an admission decision based on the request attributes.  It is NOT allowed to mutate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

    @AnalyzeClasses(packages = "org.gradle")
    public final class ConfigurationCreationTest {
    
        /**
         * This test ensures that <strong>ONLY</strong> the role-based API is used to create configurations in Gradle core plugins.
         * <p>
         * It is important to maintain this condition, because the role-based API will allow us to (eventually) split
         * the implementation of configurations into separate classes per role.  If new configurations are created using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. docs/distributed/DESIGN.md

    - Choice of erasure set size is automatic based on the number of drives available, let's say for example if there are 32 servers and 32 drives which is a total of 1024 drives. In this scenario 16 becomes the erasure set size. This is decided based on the greatest common divisor (GCD) of acceptable erasure set sizes ranging from *4 to 16*.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/shake.go

    // functions for creating SHAKE and cSHAKE instances, as well as utility
    // functions for hashing bytes to arbitrary-length output.
    //
    //
    // SHAKE implementation is based on FIPS PUB 202 [1]
    // cSHAKE implementations is based on NIST SP 800-185 [2]
    //
    // [1] https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf
    // [2] https://doi.org/10.6028/NIST.SP.800-185
    
    import (
    	"encoding/binary"
    	"hash"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/hbone/README.md

    # HTTP Based Overlay Network (HBONE)
    
    HTTP Based Overlay Network (HBONE) is the protocol used by Istio for communication between workloads in the mesh.
    At a high level, the protocol consists of tunneling TCP connections over HTTP/2 CONNECT, over mTLS.
    
    ## Specification
    
    TODO
    
    ## Implementations
    
    ### Clients
    
    #### CLI
    
    A CLI client is available using the `client` binary.
    
    Usage examples:
    
    ```shell
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentMetadataRuleContainerTest.groovy

    import spock.lang.Subject
    
    class ComponentMetadataRuleContainerTest extends Specification {
    
        @Subject
        def container = new ComponentMetadataRuleContainer()
    
        def 'is empty and class based by default'() {
            expect:
            container.isEmpty()
            container.isClassBasedRulesOnly()
        }
    
        def 'records added rules in order'() {
            given:
            def rule1 = Mock(SpecRuleAction)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. docs/pt/docs/history-design-future.md

    Por exemplo, estava claro que idealmente ele deveria ser baseado nos _type hints_ padrões do Python.
    
    Também, a melhor abordagem era usar padrões já existentes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    # ADR-0003 - Avoid introducing Groovy types to public API
    
    ## Date
    
    2024-01-12
    
    ## Context
    
    Gradle's public API requires equal access from all JVM-based languages.
    Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library.
    
    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Methods.java

    import org.apache.commons.lang.builder.HashCodeBuilder;
    
    import java.lang.reflect.Method;
    import java.util.Arrays;
    
    @SuppressWarnings("NullableProblems")
    public class Methods {
        /**
         * Equivalence of methods based on method name, and the number, type and order of parameters. Return types must be compatible.
         */
        public static final Equivalence<Method> SIGNATURE_EQUIVALENCE = new Equivalence<Method>() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top