- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 856 for glog (0.07 sec)
-
docs/en/docs/tutorial/security/oauth2-jwt.md
For example, you could identify a "car" or a "blog post". Then you could add permissions about that entity, like "drive" (for the car) or "edit" (for the blog). And then, you could give that JWT token to a user (or bot), and they could use it to perform those actions (drive the car, or edit the blog post) without even needing to have an account, just with the JWT token your API generated for that.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:45:10 UTC 2024 - 12.8K bytes - Viewed (0) -
internal/http/server.go
// You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package http import ( "context" "crypto/tls" "errors" "log" "net" "net/http" "sync" "sync/atomic" "time" "github.com/dustin/go-humanize" ) var ( // GlobalMinIOVersion - is sent in the header to all http targets GlobalMinIOVersion string
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jun 19 18:42:47 UTC 2024 - 6.1K bytes - Viewed (0) -
api/go1.1.txt
pkg io, var ErrNoProgress error pkg log, const Ldate = 1 pkg log, const Llongfile = 8 pkg log, const Lmicroseconds = 4 pkg log, const Lshortfile = 16 pkg log, const LstdFlags = 3 pkg log, const Ltime = 2 pkg log/syslog (darwin-386), const LOG_ALERT = 1 pkg log/syslog (darwin-386), const LOG_AUTH = 32 pkg log/syslog (darwin-386), const LOG_AUTH Priority pkg log/syslog (darwin-386), const LOG_AUTHPRIV = 80
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
@Override public void log(final LogType key, final Object... objs) { if (!ComponentUtil.available()) { if (logger.isDebugEnabled()) { logger.debug("container was destroyed."); } return; } super.log(key, objs); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.3K bytes - Viewed (0) -
.gitignore
**/*.swp cover.out *~ minio !*/ site/ **/*.test **/*.sublime-workspace /.idea/ /Minio.iml **/access.log vendor/ .DS_Store *.syso coverage.txt .vscode/ *.tar.bz2 parts/ prime/ stage/ .sia_temp/ config.json node_modules/ mc.* s3-check-md5* xl-meta* healing-* inspect*.zip 200M* hash-set minio.RELEASE* mc nancy inspects/* .bin/ *.gz
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 802 bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JulLoggerAdapter.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.log; import java.util.logging.Level; /** * java.util.logのロガーを利用するアダプタです。 * * @author koichik */ class JulLoggerAdapter implements LoggerAdapter { protected final String sourceClass;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/jcifs/context/AbstractCIFSContext.java
import jcifs.smb.NtlmPasswordAuthenticator.AuthenticationType; /** * @author mbechler * */ public abstract class AbstractCIFSContext extends Thread implements CIFSContext { private static final Logger log = LoggerFactory.getLogger(AbstractCIFSContext.class); private boolean closed; /** * */ public AbstractCIFSContext () { Runtime.getRuntime().addShutdownHook(this); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 3.7K bytes - Viewed (0) -
cmd/site-replication-metrics_gen_test.go
if err != nil { b.Fatal(err) } } } func TestEncodeDecodeRStat(t *testing.T) { v := RStat{} var buf bytes.Buffer msgp.Encode(&buf, &v) m := v.Msgsize() if buf.Len() > m { t.Log("WARNING: TestEncodeDecodeRStat Msgsize() is inaccurate") } vn := RStat{} err := msgp.Decode(&buf, &vn) if err != nil { t.Error(err) } buf.Reset() msgp.Encode(&buf, &v)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 30 08:00:59 UTC 2023 - 12.9K bytes - Viewed (0) -
internal/grid/msg_gen_test.go
b.Fatal(err) } } } func TestEncodeDecodeconnectReq(t *testing.T) { v := connectReq{} var buf bytes.Buffer msgp.Encode(&buf, &v) m := v.Msgsize() if buf.Len() > m { t.Log("WARNING: TestEncodeDecodeconnectReq Msgsize() is inaccurate") } vn := connectReq{} err := msgp.Decode(&buf, &vn) if err != nil { t.Error(err) } buf.Reset() msgp.Encode(&buf, &v)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jul 25 21:07:21 UTC 2024 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.Configuration; /** * */ public class TransCallNamedPipe extends SmbComTransaction { private static final Logger log = LoggerFactory.getLogger(TransCallNamedPipe.class); private byte[] pipeData; private int pipeDataOff, pipeDataLen; /** * * @param config * @param pipeName * @param data
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0)