Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 489 for mechanisms (0.14 sec)

  1. internal/logger/target/kafka/kafka_scram_client_contrib.go

    )
    
    func initScramClient(cfg Config, config *sarama.Config) {
    	switch strings.ToLower(cfg.SASL.Mechanism) {
    	case "sha512":
    		config.Net.SASL.SCRAMClientGeneratorFunc = func() sarama.SCRAMClient { return &XDGSCRAMClient{HashGeneratorFcn: KafkaSHA512} }
    		config.Net.SASL.Mechanism = sarama.SASLMechanism(sarama.SASLTypeSCRAMSHA512)
    	case "sha256":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 09 04:04:01 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java

        /**
         * Inject a standard <code>Maven</code> logging mechanism to allow this <code>Mojo</code> to communicate events
         * and feedback to the user.
         *
         * @param log a new logger
         *
         * @deprecated Use SLF4J directly
         */
        @Deprecated
        void setLog(Log log);
    
        /**
         * Furnish access to the standard Maven logging mechanism which is managed in this base class.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

        def "reports build logic reading a system property set #mechanism.description via the Java API"() {
            buildFile << """
                // not declared
                System.getProperty("CI")
            """
    
            when:
            mechanism.setup(this)
            configurationCacheRun(*mechanism.gradleArgs)
    
            then:
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. releasenotes/notes/41245.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 41244
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 07 20:06:14 UTC 2022
    - 216 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/Kerb5Context.java

        public boolean isSupported ( ASN1ObjectIdentifier mechanism ) {
            return KRB5_MECH_OID.equals(mechanism) || KRB5_MS_MECH_OID.equals(mechanism);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isPreferredMech(org.bouncycastle.asn1.ASN1ObjectIdentifier)
         */
        @Override
        public boolean isPreferredMech ( ASN1ObjectIdentifier mechanism ) {
            return isSupported(mechanism);
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
  6. releasenotes/notes/48253.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 48212
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 207 bytes
    - Viewed (0)
  7. platforms/software/maven/build.gradle.kts

        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreDeprecations() // old 'maven' publishing mechanism: types are deprecated
        ignoreRawTypes() // old 'maven' publishing mechanism: raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/publication/maven/internal/**")
        excludePatterns.add("org/gradle/api/artifacts/maven/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/runtime/debug/42888.md

    The [SetCrashOutput] function allows the user to specify an alternate
    file to which the runtime should write its fatal crash report.
    It may be used to construct an automated reporting mechanism for all
    unexpected crashes, not just those in goroutines that explicitly use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 282 bytes
    - Viewed (0)
  9. test/typeparam/dedup.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Note: this doesn't really test the deduplication of
    // instantiations. It just provides an easy mechanism to build a
    // binary that you can then check with objdump manually to make sure
    // deduplication is happening. TODO: automate this somehow?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 437 bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

                autoAppliedPluginFixture
            }
    
            @Override
            void assertNotAutoApplied(String output) {
                // Develocity plugin is transitively applied, but not via auto-application mechanism
                autoAppliedPluginFixture.assertAutoApplied(output, false)
            }
        }
    
        static class GradleEnterpriseAutoApplyClasspathIntegrationTest extends BuildScanAutoApplyClasspathIntegrationTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top