Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1141 - 1150 of 2,219 for intervals (0.06 sec)

  1. docs/em/docs/history-design-future.md

    ๐Ÿ“ฅ ๐Ÿฅ ๐Ÿ– ๐Ÿ‘ˆ ๐Ÿ“–.
    
    ## ๐ŸŽ›
    
    ๐Ÿ‘ค โœ”๏ธ ๐Ÿ— ๐Ÿ”— โฎ๏ธ ๐Ÿ— ๐Ÿ“„ ๐Ÿ“š 1๏ธโƒฃ2๏ธโƒฃ๐Ÿ—“๏ธ (๐ŸŽฐ ๐Ÿซ, ๐Ÿ“Ž โš™๏ธ, ๐Ÿ” ๐Ÿ‘จโ€๐Ÿญ, โ˜ ๐Ÿ’ฝ, โ™’๏ธ), โ†˜๏ธ ๐Ÿ“š ๐Ÿ‰ ๐Ÿ‘ฉโ€๐Ÿ’ป.
    
    ๐Ÿ• ๐Ÿ‘ˆ, ๐Ÿ‘ค ๐Ÿ’ช ๐Ÿ”ฌ, ๐Ÿ’ฏ & โš™๏ธ ๐Ÿ“š ๐ŸŽ›.
    
    ๐Ÿ“– **FastAPI** ๐Ÿ‘‘ ๐Ÿ• ๐Ÿ“– ๐Ÿšฎ โช.
    
    ๐Ÿ™†โ€โ™€ ๐Ÿ“„ [๐ŸŽ›](alternatives.md){.internal-link target=_blank}:
    
    <blockquote markdown="1">
    
    **FastAPI** ๐Ÿšซ๐Ÿ”œ ๐Ÿ”€ ๐Ÿšฅ ๐Ÿšซ โฎ๏ธ ๐Ÿ‘ท ๐ŸŽ.
    
    ๐Ÿ“ค โœ”๏ธ ๐Ÿ“š ๐Ÿงฐ โœ โญ ๐Ÿ‘ˆ โœ”๏ธ โ„น ๐Ÿ˜ฎ ๐Ÿšฎ ๐Ÿ—.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/middleware.md

    # Middleware Avanรงado
    
    No tutorial principal vocรช leu como adicionar [Middleware Personalizado](../tutorial/middleware.md){.internal-link target=_blank} ร  sua aplicaรงรฃo.
    
    E entรฃo vocรช tambรฉm leu como lidar com [CORS com o `CORSMiddleware`](../tutorial/cors.md){.internal-link target=_blank}.
    
    Nesta seรงรฃo, veremos como usar outros middlewares.
    
    ## Adicionando middlewares ASGI
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 30 20:00:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. cmd/admin-server-info.go

    package cmd
    
    import (
    	"math"
    	"net/http"
    	"os"
    	"runtime"
    	"runtime/debug"
    	"sort"
    	"strings"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/kms"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // getLocalServerProperty - returns madmin.ServerProperties for only the
    // local endpoints from given list of endpoints
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    	typedef struct {
    		uint32_t elapsedt;  
    		uint32_t msecs;  
    		uint32_t hours;  
    		uint32_t mins;  
    		uint32_t secs;  
    		uint32_t hunds;
    		uint32_t timezone;  
    		uint32_t tinterval;  
    		uint32_t day;  
    		uint32_t month;  
    		uint32_t year;  
    		uint32_t weekday;
    	} TimeOfDayInfo;
    
    	[op(0x1c)]
    	int RemoteTOD([in,string,unique] wchar_t *servername,
    			[out,unique] TimeOfDayInfo *info);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. docs_src/dependencies/tutorial008d_an_py39.py

    app = FastAPI()
    
    
    class InternalError(Exception):
        pass
    
    
    def get_username():
        try:
            yield "Rick"
        except InternalError:
            print("We don't swallow the internal error here, we raise again ๐Ÿ˜Ž")
            raise
    
    
    @app.get("/items/{item_id}")
    def get_item(item_id: str, username: Annotated[str, Depends(get_username)]):
        if item_id == "portal-gun":
            raise InternalError(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 734 bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/io/FaultyFileSystem.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.io
    
    import java.io.IOException
    import okio.Buffer
    import okio.FileSystem
    import okio.ForwardingFileSystem
    import okio.ForwardingSink
    import okio.Path
    import okio.Sink
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/internal/duplex/MockStreamHandler.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package mockwebserver3.internal.duplex
    
    import java.io.IOException
    import java.util.concurrent.CountDownLatch
    import java.util.concurrent.FutureTask
    import java.util.concurrent.LinkedBlockingQueue
    import java.util.concurrent.TimeUnit
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. cmd/kms-router.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"net/http"
    
    	"github.com/klauspost/compress/gzhttp"
    	"github.com/klauspost/compress/gzip"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    )
    
    const (
    	kmsPathPrefix       = minioReservedBucketPath + "/kms"
    	kmsAPIVersion       = "v1"
    	kmsAPIVersionPrefix = SlashSeparator + kmsAPIVersion
    )
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.internal;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.regex.Pattern;
    
    /**
     * Helper class to format multiline messages to the console
     */
    public class MultilineMessageHelper {
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

    import me.champeau.gradle.japicmp.report.PostProcessViolationsRule;
    import me.champeau.gradle.japicmp.report.ViolationCheckContextWithViolations;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Set;
    
    import static gradlebuild.binarycompatibility.upgrades.UpgradedProperties.OLD_REMOVED_ACCESSORS_OF_UPGRADED_PROPERTIES;
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Aug 19 15:30:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top