Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 135 for Configurer (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        public void setCanBeConsumed(boolean allowed) {
            maybeWarnOnChangingUsage("setCanBeConsumed", canBeConsumed, allowed);
            setCanBeConsumedInternal(allowed);
        }
    
        /**
         * Configures if a configuration can be consumed, without emitting any warnings.
         */
        private void setCanBeConsumedInternal(boolean allowed) {
            if (canBeConsumed != allowed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                type: object
              spec:
                description: BFDProfileSpec defines the desired state of BFDProfile.
                properties:
                  detectMultiplier:
                    description: Configures the detection multiplier to determine packet
                      loss. The remote transmission interval will be multiplied by this
                      value to determine the connection loss detection timer.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. cmd/iam.go

    // active on the server.
    type UsersSysType string
    
    // Types of users configured in the server.
    const (
    	// This mode uses the internal users system in MinIO.
    	MinIOUsersSysType UsersSysType = "MinIOUsersSys"
    
    	// This mode uses users and groups from a configured LDAP
    	// server.
    	LDAPUsersSysType UsersSysType = "LDAPUsersSys"
    )
    
    const (
    	statusEnabled  = "enabled"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            0 * _
    
            where:
            getter      | _
            "get"       | _
            "getOrNull" | _
            "getOrElse" | _
        }
    
        def "may configure incrementally based on convention value"() {
            given:
            property.convention(['k0': '1'])
            property.withActualValue {
                it.putAll(['k1': '2', 'k2': '3'])
                it.put('k2', '4')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

          ${KUBELET_FLAGS}
        )
    
        # warn if users are running with swap allowed
        if [ "${FAIL_SWAP_ON}" == "false" ]; then
            echo "WARNING : The kubelet is configured to not fail even if swap is enabled; production deployments should disable swap unless testing NodeSwap feature."
        fi
    
        if [[ "${REUSE_CERTS}" != true ]]; then
            # clear previous dynamic certs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    		{
    			"prometheus-mesh",
    			[]config.Config{newTelemetry("istio-system", prometheus)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    		{
    			"prometheus-namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	SecretKey    string
    	Server       *httptest.Server
    	Obj          ObjectLayer
    	cancel       context.CancelFunc
    	rawDiskPaths []string
    }
    
    // UnstartedTestServer - Configures a temp FS/Erasure backend,
    // initializes the endpoints and configures the test server.
    // The server should be started using the Start() method.
    func UnstartedTestServer(t TestErrHandler, instanceType string) TestServer {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        interceptor.
    
    
    ## Version 3.10.0
    
    _2018-02-24_
    
     *  **The pingInterval() feature now aggressively checks connectivity for web
        sockets and HTTP/2 connections.**
    
        Previously if you configured a ping interval that would cause OkHttp to send
        pings, but it did not track whether the reply pongs were received. With this
        update OkHttp requires that every ping receive a response: if it does not
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failureDescriptionContains("- Type 'Consumer' property 'counter' doesn't have a configured value.")
            failureDescriptionContains("Reason: This property isn't marked as optional and no value has been configured.")
        }
    
        def "injection by name does not fail validation if service is not found but property marked as @Optional"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    	return nodeName, nil
    }
    
    // InitializeTLS checks for a configured TLSCertFile and TLSPrivateKeyFile: if unspecified a new self-signed
    // certificate and key file are generated. Returns a configured server.TLSOptions object.
    func InitializeTLS(kf *options.KubeletFlags, kc *kubeletconfiginternal.KubeletConfiguration) (*server.TLSOptions, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top