Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 778 for verified$ (0.42 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/internal/gccgoimporter/importer_test.go

    		}
    
    		// FIXME: the original version of this test was written against
    		// the v1 export data scheme for capturing init functions, so it
    		// verified the priority values. We moved away from the priority
    		// scheme some time ago; it is not clear how much work it would be
    		// to validate the new init export data.
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      LogicalResult matchAndRewrite(Operation *op,
                                    PatternRewriter &rewriter) const override {
        // Assumes TensorFlow convolution op is already verified to be
        // in valid form.
    
        // Match a TFConvOpType under the following conditions:
        // * The 'T' attribute must exist and be of value DT_FLOAT.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. src/cmd/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: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. 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)
  10. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                object intends to bind to. Please note that verification of binding actually
                requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure
                both are pointing at each other. Binding MUST be verified prior to usage of
                this object.
              jsonPath: .status.boundVolumeSnapshotContentName
              name: SnapshotContent
              type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
Back to top