Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,914 for based (0.19 sec)

  1. guava/src/com/google/common/eventbus/SubscriberExceptionContext.java

      private final Object subscriber;
      private final Method subscriberMethod;
    
      /**
       * @param eventBus The {@link EventBus} that handled the event and the subscriber. Useful for
       *     broadcasting a new event based on the error.
       * @param event The event object that caused the subscriber to throw.
       * @param subscriber The source subscriber context.
       * @param subscriberMethod the subscribed method.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. docs/sts/tls.md

    A major advantage of certificate-based authentication compared to other STS authentication methods, like OpenID Connect or LDAP/AD, is that client authentication works without any additional/external component that must be constantly available. Therefore, certificate-based authentication may provide better availability / lower operational complexity.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

            }
    
            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 {
            ivy { url uri("ivy-repo") }
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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

     */
    
    package org.gradle.internal.reflect;
    
    import com.google.common.base.Equivalence;
    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.
         */
    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