Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1711 - 1720 of 2,256 for interval (0.14 sec)

  1. docs/em/docs/tutorial/background-tasks.md

    ðŸ‘Ŧ 😑 🚚 🌖 🏗 ðŸ“ģ, 📧/ðŸ‘Ļ‍🏭 ðŸ“Ī ðŸ‘Ļ‍💞, 💖 âœģ ⚖ïļ âœģ, ✋ïļ ðŸ‘Ŧ ✔ 👆 🏃 ðŸ–Ĩ 📋 💗 🛠ïļ, & âœīïļ, 💗 ðŸ’―.
    
    👀 🖞, ✅ [🏗 🚂](../project-generation.md){.internal-link target=_blank}, ðŸ‘Ŧ 🌐 🔌 ðŸĨ’ ⏊ ðŸ“ķ.
    
    ✋ïļ ðŸšĨ 👆 💊 🔐 ðŸ”Ē & 🎚 ⚩ïļâžĄïļ 🎏 **FastAPI** ðŸ“ą, ⚖ïļ 👆 💊 🎭 ðŸĪŠ ðŸ–Ĩ 📋 (💖 ðŸ“Ļ 📧 ðŸ“Ļ), 👆 💊 ðŸŽŊ ⚙ïļ `BackgroundTasks`.
    
    ## 🌃
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. cmd/ftp-server.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"fmt"
    	"net"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/logger"
    	ftp "goftp.io/server/v2"
    )
    
    var globalRemoteFTPClientTransport = NewRemoteTargetHTTPTransport(true)()
    
    // minioLogger use an instance of this to log in a standard format
    type minioLogger struct{}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.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.platform
    
    import java.lang.reflect.InvocationHandler
    import java.lang.reflect.InvocationTargetException
    import java.lang.reflect.Method
    import java.lang.reflect.Proxy
    import javax.net.ssl.SSLSocket
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheCorruptionTest.kt

    import javax.net.ssl.HostnameVerifier
    import javax.net.ssl.SSLSession
    import mockwebserver3.MockResponse
    import mockwebserver3.MockWebServer
    import okhttp3.Headers.Companion.headersOf
    import okhttp3.internal.buildCache
    import okhttp3.java.net.cookiejar.JavaNetCookieJar
    import okhttp3.okio.LoggingFilesystem
    import okhttp3.testing.PlatformRule
    import okio.Path.Companion.toPath
    import okio.fakefilesystem.FakeFileSystem
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

    import japicmp.model.JApiConstructor
    import japicmp.model.JApiField
    import japicmp.model.JApiMethod
    
    
    private
    typealias PredicateVisitor = GenericVisitorAdapter<Boolean, Unit?>
    
    
    internal
    object JavaSourceQueries {
    
        fun isOverrideMethod(method: JApiMethod): JavaSourceQuery<Boolean> =
            JavaSourceQuery(
                false,
                object : PredicateVisitor() {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jun 28 08:29:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. cmd/peer-s3-client.go

    package cmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"sort"
    	"strconv"
    	"sync/atomic"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/pkg/v3/sync/errgroup"
    	"golang.org/x/exp/slices"
    )
    
    var errPeerOffline = errors.New("peer is offline")
    
    type peerS3Client interface {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 22:26:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. cmd/signature-v4-utils_test.go

    package cmd
    
    import (
    	"context"
    	"net/http"
    	"os"
    	"testing"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/auth"
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    func TestCheckValid(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	objLayer, fsDir, err := prepareFS(ctx)
    	if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/oauth2-jwt.md

    ## Install `PyJWT`
    
    We need to install `PyJWT` to generate and verify the JWT tokens in Python.
    
    Make sure you create a [virtual environment](../../virtual-environments.md){.internal-link target=_blank}, activate it, and then install `pyjwt`:
    
    <div class="termy">
    
    ```console
    $ pip install pyjwt
    
    ---> 100%
    ```
    
    </div>
    
    /// info
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 26 11:45:10 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. licenses/sigs.k8s.io/json/LICENSE

    Files other than internal/golang/* licensed under:
    
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jan 05 01:31:25 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. docs/em/docs/advanced/security/oauth2-scopes.md

    👈 â„đ 🛠ïļ ðŸŽŊ.
    
    Oauth2ïļâƒĢ ðŸ‘Ŧ ðŸŽŧ.
    
    ///
    
    ## 🌐 🎑
    
    ðŸĨ‡, ➡ïļ 🔜 👀 🍕 👈 🔀 ⚩ïļâžĄïļ 🖞 👑 **🔰 - ðŸ‘Đ‍ðŸ’ŧ ðŸĶŪ** [Oauth2ïļâƒĢ âŪïļ 🔐 (&amp; 🔁), ðŸ“Ļ âŪïļ ðŸĨ™ ðŸĪ](../../tutorial/security/oauth2-jwt.md){.internal-link target=_blank}. 🔜 ⚙ïļ Oauth2ïļâƒĢ ↔:
    
    ```Python hl_lines="2  4  8  12  46  64  105  107-115  121-124  128-134  139  155"
    {!../../docs_src/security/tutorial005.py!}
    ```
    
    🔜 ➡ïļ 📄 👈 🔀 🔁 🔁.
    
    ## Oauth2ïļâƒĢ 💂‍♂ ⚖
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top