- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 814 for stripes (0.04 sec)
-
src/test/java/jcifs/internal/SMBProtocolDecodingExceptionTest.java
assertTrue(thrown instanceof CIFSException, "Thrown instance should also be CIFSException subtype"); } @ParameterizedTest @NullAndEmptySource @ValueSource(strings = { "hello", " ", "unicode-∑" }) @DisplayName("Message-only constructor: preserves provided message; null cause") void messageOnlyConstructor_preservesMessage(String message) { // Arrange & Act
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
docs/debugging/hash-set/main.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package main import ( "bufio" "bytes" "encoding/binary" "flag" "fmt" "hash/crc32" "log" "os" "strings" "github.com/dchest/siphash" "github.com/google/uuid" ) // hashes the key returning an integer based on the input algorithm. // This function currently supports // - SIPMOD
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 3.7K bytes - Viewed (0) -
cmd/object-api-deleteobject_test.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "crypto/md5" "encoding/hex" "strings" "testing" ) // Wrapper for calling DeleteObject tests for both Erasure multiple disks and single node setup. func TestDeleteObject(t *testing.T) { ExecObjectLayerTest(t, testDeleteObject) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 29 01:40:52 UTC 2024 - 4.1K bytes - Viewed (0) -
cmd/metacache-set.go
return true } if o.Marker != "" && entry.name < o.Marker { return true } if !strings.HasPrefix(entry.name, o.Prefix) { return true } if o.Separator != "" && entry.isDir() && !strings.Contains(strings.TrimPrefix(entry.name, o.Prefix), o.Separator) { return true } if !o.Recursive && !entry.isInDir(o.Prefix, o.Separator) { return true }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 30.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
import jcifs.internal.CommonServerMessageBlockRequest; import jcifs.internal.CommonServerMessageBlockResponse; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; import jcifs.util.Strings; /** * Test class for ServerMessageBlock */ class ServerMessageBlockTest { @Mock private Configuration mockConfig; @Mock private SMB1SigningDigest mockDigest; @Mock
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
docs/de/docs/tutorial/security/simple-oauth2.md
Es spielt keine Rolle, ob er andere Zeichen wie `:` enthält oder ob es eine URL ist. Diese Details sind implementierungsspezifisch. Für OAuth2 sind es einfach nur Strings. /// ## Code, um `username` und `password` entgegenzunehmen. Lassen Sie uns nun die von **FastAPI** bereitgestellten Werkzeuge verwenden, um das zu erledigen. ### `OAuth2PasswordRequestForm`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.7K bytes - Viewed (0) -
docs/es/docs/tutorial/security/simple-oauth2.md
En OAuth2 un "scope" es solo un string que declara un permiso específico requerido. No importa si tiene otros caracteres como `:` o si es una URL. Esos detalles son específicos de la implementación. Para OAuth2 son solo strings. /// ## Código para obtener el `username` y `password` Ahora vamos a usar las utilidades proporcionadas por **FastAPI** para manejar esto. ### `OAuth2PasswordRequestForm`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 9.9K bytes - Viewed (0) -
tests/scanner_valuer_test.go
Birthday: sql.NullTime{Time: time.Now(), Valid: true}, Allergen: NullString{sql.NullString{String: "Allergen", Valid: true}}, Password: EncryptedData("pass1"), Bytes: []byte("byte"), Num: 18, Strings: StringsSlice{"a", "b", "c"}, Structs: StructsSlice{ {"name1", "value1"}, {"name2", "value2"}, }, Role: Role{Name: "admin"}, ExampleStruct: ExampleStruct{"name", "value1"},
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Jun 07 07:02:07 UTC 2023 - 10.6K bytes - Viewed (0) -
cmd/ftp-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 cmd import ( "fmt" "net" "strconv" "strings" "github.com/minio/minio/internal/logger" ftp "goftp.io/server/v2" ) var globalRemoteFTPClientTransport = NewRemoteTargetHTTPTransport(true)()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.2K bytes - Viewed (0) -
.golangci.yml
text: 'unused-parameter:' - path: (.+)\.go$ text: 'dot-imports:' - path: (.+)\.go$ text: should have a package comment - path: (.+)\.go$ text: error strings should not be capitalized or end with punctuation or a newline paths: - third_party$ - builtin$ - examples$ issues: max-issues-per-linter: 100 max-same-issues: 100 formatters:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 1.2K bytes - Viewed (0)