Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 613 for parms (0.02 sec)

  1. cmd/api-headers.go

    1. e := json.NewEncoder(&bytesBuffer)
    2. e.Encode(response)
    3. return bytesBuffer.Bytes()
    4. }
    5.  
    6. // Write parts count
    7. func setPartsCountHeaders(w http.ResponseWriter, objInfo ObjectInfo) {
    8. if strings.Contains(objInfo.ETag, "-") && len(objInfo.Parts) > 0 {
    9. w.Header()[xhttp.AmzMpPartsCount] = []string{strconv.Itoa(len(objInfo.Parts))}
    10. }
    11. }
    12.  
    13. // Write object header
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue May 28 04:44:00 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java

    1. JApiCompatibilityChange.INTERFACE_ADDED // the added methods will be reported
    2. );
    3.  
    4. public BinaryBreakingChangesRule(Map<String, Object> params) {
    5. super(params);
    6. }
    7.  
    8. @Override
    9. @SuppressWarnings("unchecked")
    10. public Violation maybeViolation(final JApiCompatibility member) {
    11. if (!member.isBinaryCompatible()) {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy

    1. import me.champeau.gradle.japicmp.report.Violation
    2.  
    3. class IncubatingInternalInterfaceAddedRule extends AbstractSuperClassChangesRule {
    4.  
    5. IncubatingInternalInterfaceAddedRule(Map<String, Object> params) {
    6. super(params)
    7. }
    8.  
    9. protected boolean changed(JApiCompatibility member) {
    10. return member.getChangeStatus() == JApiChangeStatus.MODIFIED
    11. }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. docs/en/docs/reference/index.md

    1. # Reference
    2.  
    3. Here's the reference or code API, the classes, functions, parameters, attributes, and
    4. all the FastAPI parts you can use in your applications.
    5.  
    6. If you want to **learn FastAPI** you are much better off reading the
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Jul 28 00:03:57 UTC 2024
    - 285 bytes
    - Viewed (0)
  5. cmd/object-multipart-handlers.go

    1. return
    2. }
    3. if len(complMultipartUpload.Parts) == 0 {
    4. writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMissingPart), r.URL)
    5. return
    6. }
    7.  
    8. if !sort.SliceIsSorted(complMultipartUpload.Parts, func(i, j int) bool {
    9. return complMultipartUpload.Parts[i].PartNumber < complMultipartUpload.Parts[j].PartNumber
    10. }) {
    11. writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidPartOrder), r.URL)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Aug 31 18:25:48 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  6. docs/sts/web-identity.py

    1. # Save it for use later to prevent xsrf attacks
    2.  
    3. state = str(uuid4())
    4. params = {"client_id": client_id,
    5. "response_type": "code",
    6. "state": state,
    7. "redirect_uri": callback_uri,
    8. "scope": "openid"}
    9.  
    10. url = authorize_url + "?" + urllib.parse.urlencode(params)
    11. return url
    12.  
    13.  
    14. @app.route('/oauth2/callback')
    15. def callback():
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. api/maven-api-cli/pom.xml

    1. </models>
    2. <templates>
    3. <template>model.vm</template>
    4. </templates>
    5. <params>
    6. <param>packageModelV4=org.apache.maven.api.cli.extensions</param>
    7. <param>packageToolV4=org.apache.maven.cli.internal.extension.io</param>
    8. </params>
    9. <velocityBasedir>${project.basedir}/../../src/mdo</velocityBasedir>
    10. </configuration>
    11. <executions>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Oct 19 18:11:20 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tests/test_regex_deprecated_params.py

    1. client = get_client()
    2. response = client.get("/items/", params={"q": "fixedquery"})
    3. assert response.status_code == 200
    4. assert response.json() == "Hello fixedquery"
    5.  
    6.  
    7. @needs_py310
    8. def test_query_params_str_validations_item_query_nonregexquery():
    9. client = get_client()
    10. response = client.get("/items/", params={"q": "nonregexquery"})
    11. assert response.status_code == 422
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/KotlinModifiersBreakingChangeRule.groovy

    1. import me.champeau.gradle.japicmp.report.Violation
    2.  
    3. @CompileStatic
    4. class KotlinModifiersBreakingChangeRule extends AbstractGradleViolationRule {
    5.  
    6. KotlinModifiersBreakingChangeRule(Map<String, Object> params) {
    7. super(params)
    8. }
    9.  
    10. @Override
    11. Violation maybeViolation(JApiCompatibility member) {
    12.  
    13. if (isNewOrRemoved(member) || !(member instanceof JApiMethod)) {
    14. return null
    15. }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResultData.java

    1. throw new OpenSearchAccessException("data: " + dataStr, e);
    2. }
    3. }
    4. }
    5.  
    6. @Override
    7. public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
    8. builder.startObject();
    9. if (transformerName != null) {
    10. builder.field(TRANSFORMER_NAME, transformerName);
    11. }
    12. if (data != null) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top