Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,920 for emails (0.2 sec)

  1. chainable_api.go

    //
    //	// assign an email if the record is not found
    //	db.Where(User{Name: "non_existing"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user)
    //	// user -> User{Name: "non_existing", Email: "******@****.***"}
    //
    //	// assign an email if the record is not found, otherwise ignore provided email
    //	db.Where(User{Name: "jinzhu"}).Attrs(User{Email: "******@****.***"}).FirstOrInit(&user)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/crypto/x509/parser.go

    	err = forEachSAN(der, func(tag int, data []byte) error {
    		switch tag {
    		case nameTypeEmail:
    			email := string(data)
    			if err := isIA5String(email); err != nil {
    				return errors.New("x509: SAN rfc822Name is malformed")
    			}
    			emailAddresses = append(emailAddresses, email)
    		case nameTypeDNS:
    			name := string(data)
    			if err := isIA5String(name); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/footer.html

                        <input id="email" class="email" name="email" type="email" placeholder="name@email.com" pattern="[^@\s]+@[^@\s]+\.[^@\s]+" maxlength="255" required=""/>
                        <button id="submit" class="submit" type="submit">Subscribe</button>
                    </form>
                </div>
            </section>
        </nav>
    </footer>
    
    </div>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. docs/es/docs/index.md

    ## Dependencias Opcionales
    
    Usadas por Pydantic:
    
    * <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email_validator</code></a> - para validación de emails.
    
    Usados por Starlette:
    
    * <a href="https://www.python-httpx.org" target="_blank"><code>httpx</code></a> - Requerido si quieres usar el `TestClient`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    )
    
    func (algo SignatureAlgorithm) isRSAPSS() bool {
    	for _, details := range signatureAlgorithmDetails {
    		if details.algo == algo {
    			return details.isRSAPSS
    		}
    	}
    	return false
    }
    
    func (algo SignatureAlgorithm) hashFunc() crypto.Hash {
    	for _, details := range signatureAlgorithmDetails {
    		if details.algo == algo {
    			return details.hash
    		}
    	}
    	return crypto.Hash(0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. src/crypto/x509/verify.go

    	intermediateCertificate
    	rootCertificate
    )
    
    // rfc2821Mailbox represents a “mailbox” (which is an email address to most
    // people) by breaking it into the “local” (i.e. before the '@') and “domain”
    // parts.
    type rfc2821Mailbox struct {
    	local, domain string
    }
    
    // parseRFC2821Mailbox parses an email address into local and domain parts,
    // based on the ABNF for a “Mailbox” from RFC 2821. According to RFC 5280,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. samples/bookinfo/src/details/details.rb

              raise 'please provide numeric product id'
            end
            details = get_book_details(id, headers)
            res.body = details.to_json
            res['Content-Type'] = 'application/json'
        rescue => error
            res.body = {'error' => error}.to_json
            res['Content-Type'] = 'application/json'
            res.status = 400
        end
    end
    
    # TODO: provide details on different books.
    def get_book_details(id, headers)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. samples/bookinfo/platform/kube/bookinfo-details.yaml

      labels:
        app: details
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: details
          version: v1
      template:
        metadata:
          labels:
            app: details
            version: v1
        spec:
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo-details-dualstack.yaml

      selector:
        app: details
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: details-v1
      labels:
        app: details
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: details
          version: v1
      template:
        metadata:
          labels:
            app: details
            version: v1
        spec:
          containers:
          - name: details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/bookinfo-details-v2.yaml

    # Details service v2
    ##################################################################################################
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: details-v2
      labels:
        app: details
        version: v2
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: details
          version: v2
      template:
        metadata:
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top