Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 732 for verified$ (0.36 sec)

  1. src/strconv/ftoaryu.go

    // the range -1600 <= x && x <= +1600.
    //
    // The range restriction lets us work in faster integer arithmetic instead of
    // slower floating point arithmetic. Correctness is verified by unit tests.
    func mulByLog2Log10(x int) int {
    	// log(2)/log(10) ≈ 0.30102999566 ≈ 78913 / 2^18
    	return (x * 78913) >> 18
    }
    
    // mulByLog10Log2 returns math.Floor(x * log(10)/log(2)) for an integer x in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		},
    		{
    			name:   "bool claim",
    			claims: `{"email":"******@****.***","email_verified":true}`,
    			do: func(c claims) (interface{}, error) {
    				var verified bool
    				err := c.unmarshalClaim("email_verified", &verified)
    				return verified, err
    			},
    			want: true,
    		},
    		{
    			name:   "strings claim",
    			claims: `{"groups":["a","b","c"]}`,
    			do: func(c claims) (interface{}, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

            this.distributionUrl = url;
        }
    
        /**
         * The SHA-256 hash sum of the gradle distribution.
         *
         * <p>If not set, the hash sum of the gradle distribution is not verified.
         *
         * <p>The wrapper allows for verification of the downloaded Gradle distribution via SHA-256 hash sum comparison.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifier.java

                if (missingKeys == null) {
                    missingKeys = new ArrayList<>();
                }
                missingKeys.add(keyId);
            }
    
            @Override
            public void verified(PGPPublicKey key, boolean trusted) {
                if (trusted) {
                    if (trustedKeys == null) {
                        trustedKeys = new ArrayList<>();
                    }
                    trustedKeys.add(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

          setFuture(localInputFuture);
          // TODO(cpovirk): Test that fallback is not run in this case.
          return;
        }
    
        @SuppressWarnings("unchecked") // verified safe by isInstanceOfThrowableClass
        X castThrowable = (X) throwable;
        T fallbackResult;
        try {
          fallbackResult = doFallback(localFallback, castThrowable);
        } catch (Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. internal/bucket/lifecycle/expiration.go

    	// Indicates whether MinIO will remove all versions. If set to true, all versions will be deleted;
    	// if set to false the policy takes no action. This action uses the Days/Date to expire objects.
    	// This check is verified for latest version of the object.
    	DeleteAll Boolean `xml:"ExpiredObjectAllVersions"`
    
    	set bool
    }
    
    // MarshalXML encodes delete marker boolean into an XML form.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

    //===----------------------------------------------------------------------===//
    // Binary op legalizations.
    // Most of these expand from the same pattern. Full semantics are
    // verified for tf.Add and pattern application only for the rest.
    //===----------------------------------------------------------------------===//
    
    // CHECK-LABEL: func @add
    func.func @add(%arg0: tensor<2xi32>) -> tensor<2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    		}
    		if opts.Roots != nil && opts.Roots.systemPool {
    			platformChains, err := c.systemVerify(&opts)
    			// If the platform verifier succeeded, or there are no additional
    			// roots, return the platform verifier result. Otherwise, continue
    			// with the Go verifier.
    			if err == nil || opts.Roots.len() == 0 {
    				return platformChains, err
    			}
    		}
    	}
    
    	if opts.Roots == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    		return true
    	}
    	// We assume that the CCC of the first character in a decomposition
    	// is always non-zero if different from info.ccc and that we can return
    	// false at this point. This is verified by maketables.
    	return false
    }
    
    // BoundaryAfter returns true if runes cannot combine with or otherwise
    // interact with this or previous runes.
    func (p Properties) BoundaryAfter() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

             * We do not accept either short or long formats, as they can be vulnerable to collision attacks.
             *
             * <p>
             * Note: the fingerprints' formatting is not verified (i.e. if it's true base32 or not) at this stage.
             * It will happen when these fingerprints will be converted to {@link org.gradle.security.internal.Fingerprint}.
             *
             * @return a set of trusted GPG keys
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top