- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 1,150 for vorm (0.04 sec)
-
licenses/golang.org/x/text/LICENSE
modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google LLC nor the names of its
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 01:35:47 UTC 2024 - 1.4K bytes - Viewed (0) -
licenses/gopkg.in/evanphx/json-patch.v4/LICENSE
modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 18:30:46 UTC 2024 - 1.5K bytes - Viewed (0) -
licenses/k8s.io/apimachinery/third_party/forked/golang/LICENSE
modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 22 16:53:35 UTC 2021 - 1.4K bytes - Viewed (0) -
licenses/k8s.io/utils/inotify/LICENSE
modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 19:33:59 UTC 2019 - 1.4K bytes - Viewed (0) -
logger/logger.go
package logger import ( "context" "errors" "fmt" "io" "log" "os" "time" "gorm.io/gorm/utils" ) // ErrRecordNotFound record not found error var ErrRecordNotFound = errors.New("record not found") // Colors const ( Reset = "\033[0m" Red = "\033[31m" Green = "\033[32m" Yellow = "\033[33m" Blue = "\033[34m" Magenta = "\033[35m" Cyan = "\033[36m"
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Nov 07 02:19:41 UTC 2023 - 5.8K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
// to let us know that p.sawCode should be true now. // Otherwise ignored. continue } return tok } } // line consumes a single assembly line from p.lex of the form // // {label:} WORD[.cond] [ arg {, arg} ] (';' | '\n') // // It adds any labels to p.pendingLabels and returns the word, cond, // operand list, and true. If there is an error or EOF, it returns // ok=false. //
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
docs/em/docs/tutorial/schema-extra-example.md
/// warning ๐ง ๐คฏ ๐ ๐ โ โ ๐ถโโ๏ธ ๐ ๐ซ ๐ฎ ๐ ๐ฌ, ๐ด โ โน, ๐งพ ๐ฏ. /// ## `example` & `examples` ๐ ๐โ โ๏ธ ๐: * `Path()` * `Query()` * `Header()` * `Cookie()` * `Body()` * `Form()` * `File()` ๐ ๐ช ๐ฃ ๐ฝ `example` โ๏ธ ๐ช `examples` โฎ๏ธ ๐ โน ๐ ๐ ๐ฎ **๐**. ### `Body` โฎ๏ธ `example` ๐ฅ ๐ฅ ๐ถโโ๏ธ `example` ๐ โ `Body()`: //// tab | ๐ 3๏ธโฃ.6๏ธโฃ & ๐ ```Python hl_lines="20-25"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
clause/where_test.go
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Apr 25 12:22:53 UTC 2024 - 6.2K bytes - Viewed (0) -
cmd/bucket-listobjects-handlers.go
} var checkObjMeta metaCheckFn if metadata { checkObjMeta = func(name string, action policy.Action) (s3Err APIErrorCode) { return checkRequestAuthType(ctx, r, action, bucket, name) } } urlValues := r.Form // Extract all the listBucketVersions query params to their native values. prefix, marker, delimiter, maxkeys, encodingType, versionIDMarker, errCode := getListBucketObjectVersionsArgs(urlValues) if errCode != ErrNone {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 11 03:13:30 UTC 2024 - 11.4K bytes - Viewed (0) -
src/archive/tar/strconv.go
// // If operating in binary mode, this assumes strict GNU binary mode; which means // that the first byte can only be either 0x80 or 0xff. Thus, the first byte is // equivalent to the sign bit in two's complement form. func fitsInBase256(n int, x int64) bool { binBits := uint(n-1) * 8 return n >= 9 || (x >= -1<<binBits && x < 1<<binBits) } // parseNumeric parses the input as being encoded in either base-256 or octal.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 01 14:28:42 UTC 2023 - 9K bytes - Viewed (0)