- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 772 for unsafe (0.04 sec)
-
src/cmd/asm/internal/flags/flags.go
(*m) = append(*m, val) return nil } func Usage() { fmt.Fprintf(os.Stderr, "usage: asm [options] file.s ...\n") fmt.Fprintf(os.Stderr, "Flags:\n") flag.PrintDefaults() os.Exit(2) } func Parse() { objabi.Flagparse(Usage) if flag.NArg() == 0 { flag.Usage() } // Flag refinement. if *OutputFile == "" { if flag.NArg() != 1 { flag.Usage() } input := filepath.Base(flag.Arg(0))
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 22 19:18:23 UTC 2023 - 2.8K bytes - Viewed (0) -
ci/official/libtensorflow.sh
python_bin=python3 # TODO(belitskiy): Add a `python3` alias/symlink to Windows Docker image. if [[ $(uname -s) = MSYS_NT* ]]; then python_bin="python" fi tfrun "$python_bin" tensorflow/tools/ci_build/update_version.py --nightly fi if [[ $(uname -s) != MSYS_NT* ]]; then tfrun bazel $TFCI_BAZEL_BAZELRC_ARGS test $TFCI_BAZEL_COMMON_ARGS --config=linux_libtensorflow_test
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Jan 24 20:17:08 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
} } if (usage == 0) { synchronized (this) { log.debug("Usage dropped to zero, release session"); if (this.sessionAcquired.compareAndSet(true, false)) { this.session.release(); } } } else if (usage < 0) { log.error("Usage count dropped below zero " + this);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
docs/de/docs/tutorial/query-params-str-validations.md
Wenden wir uns jetzt den spannenden Dingen zu. 🎉 ## `Query` zu `Annotated` im `q`-Parameter hinzufügen Jetzt, da wir `Annotated` für unsere Metadaten deklariert haben, fügen Sie `Query` hinzu, und setzen Sie den Parameter `max_length` auf `50`: {* ../../docs_src/query_params_str_validations/tutorial002_an_py310.py hl[9] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 16.6K bytes - Viewed (0) -
cmd/bucket-quota.go
internalLogOnceIf(GlobalContext, fmt.Errorf("unable to retrieve usage information for bucket: %s, relying on older value cached in-memory: err(%v)", bucket, err), "bucket-usage-cache-"+bucket) } else { internalLogOnceIf(GlobalContext, errors.New("unable to retrieve usage information for bucket: %s, no reliable usage value available - quota will not be enforced"), "bucket-usage-empty-"+bucket) } } if len(dui.BucketsUsage) > 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Aug 06 23:48:58 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SimpleMemoryManagementTest.java
public void testResourceCleanup() throws Exception { SmbSessionImpl session = new SmbSessionImpl(mockContext, "testhost", "testdomain", mockTransport); // Session starts with usage count > 0, so acquire/release cycles maintain usage assertTrue(session.isInUse(), "Session should be in use initially"); // Test acquire/release cycles (session remains in use due to initial transport acquire)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
} } /** * @return tree connection with increased usage count */ public SmbTreeConnection acquire() { final long usage = this.usageCount.incrementAndGet(); if (log.isTraceEnabled()) { log.trace("Acquire tree connection " + usage + " " + this); } if (usage == 1) { synchronized (this) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1) -
src/archive/tar/stat_unix.go
// (not implemented on that platform, cgo not enabled, etc). if u, ok := userMap.Load(h.Uid); ok { h.Uname = u.(string) } else if u, err := user.LookupId(strconv.Itoa(h.Uid)); err == nil { h.Uname = u.Username userMap.Store(h.Uid, h.Uname) } if g, ok := groupMap.Load(h.Gid); ok { h.Gname = g.(string) } else if g, err := user.LookupGroupId(strconv.Itoa(h.Gid)); err == nil { h.Gname = g.Name
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Mar 15 16:01:50 UTC 2024 - 3.2K bytes - Viewed (0) -
tests/table_test.go
t.Errorf("failed to find unique constraint, got %v", constraints) } } }) t.Run("namer", func(t *testing.T) { uname := "custom_unique_name" db, _ := gorm.Open(postgres.Open(postgresDSN), &gorm.Config{ NamingStrategy: mockUniqueNamingStrategy{ UName: uname, }, }) user, err := schema.Parse(&LongString{}, &sync.Map{}, db.Config.NamingStrategy) if err != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 12.7K bytes - Viewed (0) -
src/archive/tar/tar_test.go
return nil } func (f *fileInfoNames) Uname() (string, error) { return "Uname", nil } func (f *fileInfoNames) Gname() (string, error) { return "Gname", nil } func TestFileInfoHeaderUseFileInfoNames(t *testing.T) { info := &fileInfoNames{} header, err := FileInfoHeader(info, "") if err != nil { t.Fatal(err) } if header.Uname != "Uname" {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Jul 25 00:25:45 UTC 2024 - 23.9K bytes - Viewed (0)