Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 325 for verified$ (0.3 sec)

  1. src/image/png/writer.go

    			} else {
    				for x := b.Min.X; x < b.Max.X; x++ {
    					c := color.GrayModel.Convert(m.At(x, y)).(color.Gray)
    					cr[0][i] = c.Y
    					i++
    				}
    			}
    		case cbTC8:
    			// We have previously verified that the alpha value is fully opaque.
    			cr0 := cr[0]
    			stride, pix := 0, []byte(nil)
    			if rgba != nil {
    				stride, pix = rgba.Stride, rgba.Pix
    			} else if nrgba != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

                // First resolve with a tmp result, and if it's found and that the file is still present
                // we can perform verification. If it's missing, then we do nothing so that it's downloaded
                // and verified later.
                BuildableModuleComponentMetaDataResolveResult<ModuleComponentGraphResolveState> tmp = new DefaultBuildableModuleComponentMetaDataResolveResult<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. security/pkg/pki/util/keycertbundle.go

    	return certExpiry, nil
    }
    
    // Verify that the cert chain, root cert and key/cert match.
    func Verify(certBytes, privKeyBytes, certChainBytes, rootCertBytes []byte) error {
    	// Verify the cert can be verified from the root cert through the cert chain.
    	rcp := x509.NewCertPool()
    	rcp.AppendCertsFromPEM(rootCertBytes)
    
    	icp := x509.NewCertPool()
    	icp.AppendCertsFromPEM(certChainBytes)
    
    	opts := x509.VerifyOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K 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. 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)
  10. pkg/proxy/serviceport.go

    			continue
    		}
    
    		// kube-proxy does not implement IP family translation, skip addresses with
    		// different IP family
    		ip := netutils.ParseIPSloppy(ing.IP) // (already verified as an IP-address)
    		if ingFamily := proxyutil.GetIPFamilyFromIP(ip); ingFamily == ipFamily {
    			info.loadBalancerVIPs = append(info.loadBalancerVIPs, ip)
    		} else {
    			invalidIPs = append(invalidIPs, ip)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top