Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,773 for compared (0.1 sec)

  1. docs/sts/tls.md

    ## Introduction
    
    MinIO provides a custom STS API that allows authentication with client X.509 / TLS certificates.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultGradlePropertiesControllerTest.groovy

            properties.mergeProperties([:]) == [property: '42']
        }
    
        def "loadGradlePropertiesFrom is idempotent"() {
    
            given:
            // use a different File instance for each call to ensure it is compared by value
            def currentDir = { new File('.') }
            def loader = Mock(IGradlePropertiesLoader)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ACE.java

     * "The .NET Developer's Guide to Windows Security" (which is also
     * available online).
     * <p>
     * Direct ACEs are evaluated first in order. The SID of the user performing
     * the operation and the desired access bits are compared to the SID
     * and access mask of each ACE. If the SID matches, the allow/deny flags
     * and access mask are considered. If the ACE is a "deny"
     * ACE and <i>any</i> of the desired access bits match bits in the access
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  4. src/go/types/eval_test.go

    	if gotTv.Type == nil {
    		t.Errorf("Eval(%q) got nil type but no error", expr)
    		return
    	}
    
    	// compare types
    	if typ != nil {
    		// we have a type, check identity
    		if !Identical(gotTv.Type, typ) {
    			t.Errorf("Eval(%q) got type %s, want %s", expr, gotTv.Type, typ)
    			return
    		}
    	} else {
    		// we have a string, compare type string
    		gotStr := gotTv.Type.String()
    		if gotStr != typStr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/crypto/tls/key_schedule.go

    	if err != nil {
    		return nil, nil, err
    	}
    	return c, kyberSharedSecret(ss, c), nil
    }
    
    func kyberSharedSecret(K, c []byte) []byte {
    	// Package mlkem768 implements ML-KEM, which compared to Kyber removed a
    	// final hashing step. Compute SHAKE-256(K || SHA3-256(c), 32) to match Kyber.
    	// See https://words.filippo.io/mlkem768/#bonus-track-using-a-ml-kem-implementation-as-kyber-v3.
    	h := sha3.NewShake256()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/time/format_rfc3339.go

    // RFC 3339 accounts for 57% of all explicitly specified time formats,
    // with the second most popular format only being used 8% of the time.
    // The overwhelming use of RFC 3339 compared to all other formats justifies
    // the addition of logic to optimize formatting and parsing.
    
    func (t Time) appendFormatRFC3339(b []byte, nanos bool) []byte {
    	_, offset, abs := t.locabs()
    
    	// Format date.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 19:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

    import java.util.Properties;
    import java.util.concurrent.Callable;
    
    /**
     * Writes a {@link java.util.Properties} in a way that the results can be expected to be reproducible.
     *
     * <p>There are a number of differences compared to how properties are stored:</p>
     * <ul>
     *     <li>no timestamp comment is generated at the beginning of the file</li>
     *     <li>the lines in the resulting files are separated by a pre-set separator (defaults to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/math/jn.go

    //      for n>x, a continued fraction approximation to
    //      j(n,x)/j(n-1,x) is evaluated and then backward
    //      recursion is used starting from a supposed value
    //      for j(n,x). The resulting value of j(0,x) is
    //      compared with the actual value to correct the
    //      supposed value of j(n,x).
    //
    //      yn(n,x) is similar in all respects, except
    //      that forward recursion is used for all
    //      values of n>1.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  9. pkg/apis/core/annotation_key_constants.go

    	MigratedPluginsAnnotationKey = "storage.alpha.kubernetes.io/migrated-plugins"
    
    	// PodDeletionCost can be used to set to an int32 that represent the cost of deleting
    	// a pod compared to other pods belonging to the same ReplicaSet. Pods with lower
    	// deletion cost are preferred to be deleted before pods with higher deletion cost.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      // going to handled separately so we don't need to handle those.
      addConversion([](Type ty) { return ty; });
    
      // This materialization is helpful in cases where we have more refined types
      // after conversion to mhlo compared to the original type in TF. For example,
      // a TF op with result type tensor<*xf32> will have a bounded type after
      // fallback legalization.
      auto cast_value = [&](OpBuilder& builder, Type result_type, ValueRange inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top