- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 1,177 for dakota (0.11 sec)
-
docs/sts/client_grants/sts_element.py
@classmethod def fromstring(cls, root_name, data): """Initialize STSElement from name and XML string data. :param name: Name for XML data. Used in XML errors. :param data: string data to be parsed. :return: Returns an STSElement. """ try: return cls(root_name, cElementTree.fromstring(data)) except _ETREE_EXCEPTIONS as error:
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 2.5K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/sanitize.js
e.each||(e=a(e));var g=function(){var b=a(this),c=b.val();a.split(b.attr("data-sanitize"),function(a){if(!(a in d))throw new Error('Use of unknown sanitize command "'+a+'"');c=d[a](c,b,f)}),b.val(c).trigger("keyup.validation")};e.each(function(){var b=a(this);f.sanitizeAll&&b.find("input,textarea").not(c).each(function(){var b=a(this),c=b.attr("data-sanitize")||"";b.attr("data-sanitize",f.sanitizeAll+" "+c)}),b.find("[data-sanitize]").unbind("blur.sanitation",g).bind("blur.sanitation",g),a(funct...
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 2.7K bytes - Viewed (0) -
internal/event/arn_test.go
} for i, testCase := range testCases { data, err := xml.Marshal(testCase.arn) expectErr := (err != nil) if expectErr != testCase.expectErr { t.Fatalf("test %v: error: expected: %v, got: %v", i+1, testCase.expectErr, expectErr) } if !testCase.expectErr { if !reflect.DeepEqual(data, testCase.expectedData) { t.Fatalf("test %v: data: expected: %v, got: %v", i+1, string(testCase.expectedData), string(data))
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 3.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth.jsp
<la:message key="labels.webauth_any"/> </c:if> ${f:h(data.hostname)}: <c:if test="${data.port==null||data.port==''}">
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Tue Mar 24 13:43:18 UTC 2020 - 6.1K bytes - Viewed (0) -
cmd/config-common.go
return errConfigNotFound } return err } func saveConfigWithOpts(ctx context.Context, store objectIO, configFile string, data []byte, opts ObjectOptions) error { hashReader, err := hash.NewReader(ctx, bytes.NewReader(data), int64(len(data)), "", getSHA256Hash(data), int64(len(data))) if err != nil { return err } _, err = store.PutObject(ctx, minioMetaBucket, configFile, NewPutObjReader(hashReader), opts)
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Mon Sep 18 17:00:54 UTC 2023 - 3.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/header.jsp
<c:if test="${eoled}"> <li class="nav-item" data-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />"> <a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a> </li> </c:if> <c:if test="${developmentMode}"> <li class="nav-item" data-toggle="tooltip" data-placement="left"
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sat Oct 24 03:00:28 UTC 2020 - 4.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/header.jsp
<c:if test="${eoled}"> <li class="nav-item" data-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />"> <a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a> </li> </c:if> <c:if test="${developmentMode}"> <li class="nav-item" data-toggle="tooltip" data-placement="left"
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Sat Oct 24 03:00:28 UTC 2020 - 4.2K bytes - Viewed (0) -
docs/en/docs/tutorial/response-model.md
``` //// FastAPI will use this return type to: * **Validate** the returned data. * If the data is invalid (e.g. you are missing a field), it means that *your* app code is broken, not returning what it should, and it will return a server error instead of returning incorrect data. This way you and your clients can be certain that they will receive the data and the data shape expected. * Add a **JSON Schema** for the response, in the OpenAPI *path operation*.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.1K bytes - Viewed (0) -
docs/en/docs/tutorial/body.md
* Read the body of the request as JSON. * Convert the corresponding types (if needed). * Validate the data. * If the data is invalid, it will return a nice and clear error, indicating exactly where and what was the incorrect data. * Give you the received data in the parameter `item`.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler.jsp
<c:forEach var="data" varStatus="s" items="${scheduledJobItems}"> <tr data-href="${contextPath}/admin/scheduler/details/4/${f:u(data.id)}"> <td>${f:h(data.name)}</td>
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 6.4K bytes - Viewed (0)