Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 534 for unsat (0.04 sec)

  1. pkg/env/var.go

    	return result
    }
    
    // Get retrieves the value of the environment variable.
    // It returns the value, which will be the default if the variable is not present.
    // To distinguish between an empty value and an unset value, use Lookup.
    func (v StringVar) Get() string {
    	result, _ := v.Lookup()
    	return result
    }
    
    // Lookup retrieves the value of the environment variable. If the
    // variable is present in the environment the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. docs/bucket/replication/setup_2site_existing_replication.sh

    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

                            settings.develocity {
                                buildScan.obfuscation.hostname {
                                    // lambda expression
                                    "unset"
                                }
                            }
                        }
                    }
                """
                file('build.gradle.kts') << """
                    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. releasenotes/notes/50195.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
      - 50195
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 18:16:45 UTC 2024
    - 184 bytes
    - Viewed (0)
  5. releasenotes/notes/40851.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 21 06:37:43 UTC 2022
    - 178 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultSetProperty.java

        public SetProperty<T> convention(Provider<? extends Iterable<? extends T>> provider) {
            super.convention(provider);
            return this;
        }
    
        @Override
        public SetProperty<T> unset() {
            return uncheckedNonnullCast(super.unset());
        }
    
        @Override
        public SetProperty<T> unsetConvention() {
            return uncheckedNonnullCast(super.unsetConvention());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:58:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

         * [addSubjectAlternativeName]. If unset a random string will be used.
         *
         * [rfc_2818]: https://tools.ietf.org/html/rfc2818
         */
        fun commonName(cn: String) =
          apply {
            this.commonName = cn
          }
    
        /** Sets the certificate's organizational unit (OU). If unset this field will be omitted. */
        fun organizationalUnit(ou: String) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/events.go

    		allErrs = append(allErrs, field.Invalid(field.NewPath("firstTimestamp"), "", "needs to be unset"))
    	}
    	if event.LastTimestamp.Time != zeroTime {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("lastTimestamp"), "", "needs to be unset"))
    	}
    	if event.Count != 0 {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("count"), "", "needs to be unset"))
    	}
    	if event.Source.Component != "" || event.Source.Host != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CompactHashMap.java

        int mask = hashTableMask();
        if (minimumTableSize < mask) { // smaller table size will always be less than current mask
          resizeTable(mask, minimumTableSize, UNSET, UNSET);
        }
      }
    
      @Override
      public void clear() {
        if (needsAllocArrays()) {
          return;
        }
        incrementModCount();
        Map<K, V> delegate = delegateOrNull();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. pkg/model/fips.go

    		if ctx.TlsParams == nil {
    			ctx.TlsParams = &tls.TlsParameters{}
    		}
    		ctx.TlsParams.TlsMinimumProtocolVersion = tls.TlsParameters_TLSv1_2
    		ctx.TlsParams.TlsMaximumProtocolVersion = tls.TlsParameters_TLSv1_2
    		// Default (unset) cipher suites field in the FIPS build of Envoy uses only the FIPS ciphers.
    		// Therefore, we only filter this field when it is set.
    		if len(ctx.TlsParams.CipherSuites) > 0 {
    			ciphers := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top