Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MIT (0.18 sec)

  1. CREDITS

    SOFTWARE.
    
    <http://www.opensource.org/licenses/mit-license.php>
    
    ================================================================
    
    github.com/eapache/go-resiliency
    https://github.com/eapache/go-resiliency
    ----------------------------------------------------------------
    The MIT License (MIT)
    
    Copyright (c) 2014 Evan Huus
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Apr 16 18:48:56 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  2. internal/jwt/parser.go

    // This file is a re-implementation of the original code here with some
    // additional allocation tweaks reproduced using GODEBUG=allocfreetrace=1
    // original file https://github.com/golang-jwt/jwt/blob/main/parser.go
    // borrowed under MIT License https://github.com/golang-jwt/jwt/blob/main/LICENSE
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/hmac"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"hash"
    	"sync"
    	"time"
    
    	"github.com/buger/jsonparser"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue May 09 07:53:08 GMT 2023
    - 13.9K bytes
    - Viewed (0)
Back to top