Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 325 for emails (0.23 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. 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)
  4. samples/bookinfo/src/productpage/templates/productpage.html

                        <td class="whitespace-nowrap px-2 py-2 text-sm font-medium text-gray-900">{{ details.publisher }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-900">{{ details.pages }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-500">{{ details.type }}</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types.go

    	//
    	// If the certificate signing request is denied, a condition of type "Denied" is added and this field remains empty.
    	// If the signer cannot issue the certificate, a condition of type "Failed" is added and this field remains empty.
    	//
    	// Validation requirements:
    	//  1. certificate must contain one or more PEM blocks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                size() == 3
                it.find { it.details.buildPath == ":" }
                it.find { it.details.buildPath == ":include" }
                it.find { it.details.buildPath == ":include:inner-include" }
            }
            with(fixture.all(LoadProjectsBuildOperationType)) {
                size() == 3
                it.find { it.details.buildPath == ":" }
                it.find { it.details.buildPath == ":include" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            }
            def jarProgress = jarTaskDoLastOperation.progress
            jarProgress.size() == 1
            jarProgress[0].details.logLevel == 'QUIET'
            jarProgress[0].details.category == 'system.out'
            jarProgress[0].details.spans.size == 1
            jarProgress[0].details.spans[0].styleName == 'Normal'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            def details = new StoreUpdatedWithProblemsDetails()
            closure.delegate = details
            closure()
    
            doStoreWithProblems(details, details, details, details)
        }
    
        private void doStateStored(HasBuildActions details, HasInvalidationReason invalidationDetails, HasIntermediateDetails intermediateDetails) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

                    }
                    ClassLoaderDetails details = classLoaderCache.maybeGetDetails(classLoader);
                    if (details != null) {
                        // A cached ClassLoader
                        id = (short) (classLoaderIds.size() + CLIENT_CLASS_LOADER_ID + 1);
                        classLoaderIds.put(classLoader, id);
                        classLoaderDetails.put(id, details);
                        return id;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            with(configureProjectOps[0]) {
                assert details.buildPath == ':lib'
                assert details.projectPath == ':'
                assert parentId == configureChildBuild.id
            }
            with(configureProjectOps[1]) {
                assert details.buildPath == ':'
                assert details.projectPath == ':'
                assert parentId == configureRootBuild.id
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top