Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 709 for emails (0.07 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            { s -> s.details.targetType == 'project' && s.details.targetPath == projectPath } as Spec<? super BuildOperationRecord>
        }
    
        private static Spec<? super BuildOperationRecord> pluginClass(String pluginClass) {
            { s -> s.details.pluginClass == pluginClass } as Spec<? super BuildOperationRecord>
        }
    
        private static Spec<? super BuildOperationRecord> scriptFile(TestFile file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

        "children": [ratings]
    }
    
    productpage = {
        "name": "http://{0}{1}:{2}".format(detailsHostname, servicesDomain, detailsPort),
        "endpoint": "details",
        "children": [details, reviews]
    }
    
    service_dict = {
        "productpage": productpage,
        "details": details,
        "reviews": reviews,
    }
    
    request_result_counter = Counter('request_result', 'Results of requests', ['destination_app', 'response_code'])
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (1)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/FilteredModuleComponentRepository.java

                DefaultArtifactResolutionDetails details = new DefaultArtifactResolutionDetails(id, moduleComponentIdentifier);
                filterAction.execute(details);
                if (details.notFound) {
                    absent.run();
                } else {
                    present.run();
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         *
         * @return the problem label
         * @since 8.9
         */
        ContextualLabel getContextualLabel();
    
        /**
         * Returns the details string.
         *
         * @return the problem details
         * @since 8.8
         */
        Details getDetails();
    
        /**
         * Returns the locations associated with this problem.
         *
         * @return the locations
         * @since 8.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. docs_src/security/tutorial004_an.py

    ALGORITHM = "HS256"
    ACCESS_TOKEN_EXPIRE_MINUTES = 30
    
    
    fake_users_db = {
        "johndoe": {
            "username": "johndoe",
            "full_name": "John Doe",
            "email": "******@****.***",
            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        }
    }
    
    
    class Token(BaseModel):
        access_token: str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	flex-flow: row wrap;
    }
    
    #header .details span:first-child {
    	margin-left: -0.125em;
    }
    
    #header .details span.email a {
    	color: var(--header-color);
    }
    
    #header .details br {
    	display: none;
    }
    
    #header .details br+span:before {
    	content: "\00a0\2013\00a0";
    }
    
    #header .details br+span.author:before {
    	content: "\00a0\22c5\00a0";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. docs_src/security/tutorial004_py310.py

    ALGORITHM = "HS256"
    ACCESS_TOKEN_EXPIRE_MINUTES = 30
    
    
    fake_users_db = {
        "johndoe": {
            "username": "johndoe",
            "full_name": "John Doe",
            "email": "******@****.***",
            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        }
    }
    
    
    class Token(BaseModel):
        access_token: str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. docs_src/security/tutorial004_an_py39.py

    ALGORITHM = "HS256"
    ACCESS_TOKEN_EXPIRE_MINUTES = 30
    
    
    fake_users_db = {
        "johndoe": {
            "username": "johndoe",
            "full_name": "John Doe",
            "email": "******@****.***",
            "hashed_password": "$2b$12$EixZaYVK1fsbw1ZfbX3OXePaWxn96p36WQoeG6Lruj3vjPGga31lW",
            "disabled": False,
        }
    }
    
    
    class Token(BaseModel):
        access_token: str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    fqid == 'validation:property-validation:missing-annotation'
                    contextualLabel == 'Type \'MyTask\' property \'badTime\' is missing an input or output annotation'
                    details == 'A property without annotation isn\'t considered during up-to-date checking'
                    solutions == [
                        'Add an input or output annotation',
                        'Mark it as @Internal',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. src/net/smtp/smtp.go

    	}
    	return err
    }
    
    // Mail issues a MAIL command to the server using the provided email address.
    // If the server supports the 8BITMIME extension, Mail adds the BODY=8BITMIME
    // parameter. If the server supports the SMTPUTF8 extension, Mail adds the
    // SMTPUTF8 parameter.
    // This initiates a mail transaction and is followed by one or more [Client.Rcpt] calls.
    func (c *Client) Mail(from string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top