Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,662 for emails (0.14 sec)

  1. platforms/documentation/docs/src/docs/stylesheets/userGuideHtmlCommon.xsl

    DSL Reference Release Notes Javadoc News Blog Newsletter Twitter Products Build Scan™ Build Cache Develocity Docs Get Help Forums GitHub Training Services Stay UP-TO-DATE on new features and news By entering your email, you agree to our Terms and Privacy Policy, including receipt of emails. You can unsubscribe at any time. Subscribe Version section-anchor #...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 16:51:07 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/Details.java

    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents a problem details.
     *
     * @since 8.6
     */
    @Incubating
    public interface Details {
    
        /**
         * Returns a detailed description of a problem.
         *
         * @return the problem details
         * @since 8.6
         */
        @Nullable
        String getDetails();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 13:56:41 UTC 2023
    - 999 bytes
    - Viewed (0)
  9. 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)
  10. samples/ambient-argo/application/details.yaml

      labels:
        account: 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:
          serviceAccountName: bookinfo-details
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1021 bytes
    - Viewed (0)
Back to top