Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 208 for provider3 (0.14 sec)

  1. docs/changelogs/changelog_3x.md

        interval of 30 seconds is reasonable for most use cases.
    
     *  **OkHttp now supports [Conscrypt][conscrypt].** Conscrypt is a Java Security
        Provider that integrates BoringSSL into the Java platform. Conscrypt
        supports more cipher suites than the JVM’s default provider and may also
        execute more efficiently.
    
        To use it, first register a [Conscrypt dependency][conscrypt_dependency] in
        your build system.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    )
    
    func AssertProvidersHandled(expected int) {
    	if expected != len(wellknownProviders) {
    		panic(fmt.Sprintf("Not all providers handled; This function handles %v but there are %v known providers", expected, len(wellknownProviders)))
    	}
    }
    
    // addHostsFromMeshConfigProvidersHandled contains the number of providers we handle below.
    // This is to ensure this stays in sync as new handlers are added
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    //     not provide any directly-imported package are then marked as indirect.
    //
    //   - Root dependencies are updated to their selected versions.
    //
    // The "changed" return value reports whether the update changed the selected
    // version of any module that either provided a loaded package or may now
    // provide a package that was previously unresolved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

       * set will be backed by an {@link EnumSet}.
       *
       * <p>The iteration order of the returned set follows the enum's iteration order, not the order in
       * which the elements are provided to the method.
       *
       * @param anElement one of the elements the set should contain
       * @param otherElements the rest of the elements the set should contain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Note that you typically only have more than one instance of a test if you're using a data provider to parameterize it. Also, grouping tests by instances was introduced with TestNG version 6.1. Setting the `groupByInstances` property to `true` for an older TestNG version will cause the build to fail.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    	svc4 := &Service{
    		Hostname: "svc4",
    		Attributes: ServiceAttributes{
    			Namespace:       "test4",
    			ServiceRegistry: provider.External,
    		},
    	}
    	svc4_1 := &Service{
    		Hostname: "svc4",
    		Attributes: ServiceAttributes{
    			Namespace:       "test4",
    			ServiceRegistry: provider.External,
    		},
    	}
    	// kubernetes service will override non kubernetes
    	svc4_2 := &Service{
    		Hostname: "svc4",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            def provider = new ServiceRegistrationProvider() {
                @Provides
                String createString(Number number) {
                    return number.toString()
                }
    
                @Provides
                Integer createInteger() {
                    return 12
                }
            }
            registry.addProvider(provider)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    	// (ref: https://github.com/kubernetes/kubernetes/issues/119656)
    	lbNoNodeAccessIPPortProtocolEntries []*utilipset.Entry
    
    	logger klog.Logger
    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    // NewProxier returns a new Proxier given an iptables and ipvs Interface instance.
    // Because of the iptables and ipvs logic, it is assumed that there is only a single Proxier active on a machine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

            dependency.selector == moduleId('group-two', 'artifact-two', 'version-two')
            hasDefaultDependencyArtifact(dependency)
        }
    
        def "uses parent properties from active profile to provide default values for a dependency"() {
            given:
            def parent = tmpDir.file("parent.xlm") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    			name: "fstype, fsgroup, RWO provided (should apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteOnce,
    			},
    			fsType:     "ext4",
    			setFsGroup: true,
    			fsGroup:    3000,
    		},
    		{
    			name: "fstype, fsgroup, RWO provided, FSGroupPolicy ReadWriteOnceWithFSType (should apply fsgroup)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top