Search Options

Results per page
Sort
Preferred Languages
Advance

Results 531 - 540 of 1,407 for result1 (0.1 sec)

  1. fastapi/openapi/utils.py

                result = get_openapi_path(
                    route=route,
                    operation_ids=operation_ids,
                    schema_generator=schema_generator,
                    model_name_map=model_name_map,
                    field_mapping=field_mapping,
                    separate_input_output_schemas=separate_input_output_schemas,
                )
                if result:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. docs_src/body_fields/tutorial001_py310.py

        tax: float | None = None
    
    
    @app.put("/items/{item_id}")
    async def update_item(item_id: int, item: Item = Body(embed=True)):
        results = {"item_id": item_id, "item": item}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 523 bytes
    - Viewed (0)
  3. docs_src/schema_extra_example/tutorial003_an.py

                        "description": "A very nice Item",
                        "price": 35.4,
                        "tax": 3.2,
                    }
                ],
            ),
        ],
    ):
        results = {"item_id": item_id, "item": item}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 721 bytes
    - Viewed (0)
  4. docs_src/body_fields/tutorial001.py

        tax: Union[float, None] = None
    
    
    @app.put("/items/{item_id}")
    async def update_item(item_id: int, item: Item = Body(embed=True)):
        results = {"item_id": item_id, "item": item}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 561 bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api.cc

          ImmediateExecutionTensorHandle** result) override {
        handle->Ref();
        TF_Status status;
        TFE_TensorHandle* result_handle = device_.copy_tensor_to_device(
            context_, tensorflow::wrap(handle), &status, info_);
        handle->Unref();
        if (!status.status.ok()) return status.status;
        *result = tensorflow::unwrap(result_handle);
        (*result)->Ref();
        TFE_DeleteTensorHandle(result_handle);
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/BaseEncoding.java

          BaseEncoding result = upperCase;
          if (result == null) {
            Alphabet upper = alphabet.upperCase();
            result = upperCase = (upper == alphabet) ? this : newInstance(upper, paddingChar);
          }
          return result;
        }
    
        @Override
        public BaseEncoding lowerCase() {
          BaseEncoding result = lowerCase;
          if (result == null) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. docs_src/schema_extra_example/tutorial004_an_py39.py

                    {
                        "name": "Baz",
                        "price": "thirty five point four",
                    },
                ],
            ),
        ],
    ):
        results = {"item_id": item_id, "item": item}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Jul 01 16:43:29 UTC 2023
    - 936 bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/SourceSinkTester.java

        List<Method> result = Lists.newArrayList();
        for (Method method : testClass.getDeclaredMethods()) {
          if (Modifier.isPublic(method.getModifiers())
              && method.getReturnType() == void.class
              && method.getParameterTypes().length == 0
              && method.getName().startsWith("test")) {
            result.add(method);
          }
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 27 18:57:08 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

            return this.fileLocator.getParent();
        }
    
    
        /**
         * Returns the full uncanonicalized URL of this SMB resource. An
         * <code>SmbFile</code> constructed with the result of this method will
         * result in an <code>SmbFile</code> that is equal to the original.
         *
         * @return The uncanonicalized full URL of this SMB resource.
         */
    
        public String getPath () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/FluentIterableTest.java

        assertEquals("[1, 2, 3, 4, 5, 6]", result.toString());
      }
    
      public void testAppend_toEmpty() {
        FluentIterable<Integer> result =
            FluentIterable.<Integer>of().append(Lists.newArrayList(1, 2, 3));
        assertEquals(asList(1, 2, 3), Lists.newArrayList(result));
      }
    
      public void testAppend_emptyList() {
        FluentIterable<Integer> result =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top