- Sort Score
- Result 10 results
- Languages All
Results 591 - 600 of 840 for f$ (0.01 sec)
-
docs/em/docs/advanced/settings.md
//// ### โ ๐จ๐ป {๐ ๐ ๐ช โ ๐ ๐ข ๐ ๐, ๐ถ (โ๏ธ โฎ๏ธ ๐ ๐ ๐ฉโ๐ฌ), & โคด๏ธ โ ๐ซ ๐. ๐ผ ๐ ๐ช โ๏ธ ๐ `main.py` โฎ๏ธ: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip ๐ฅ โ <a href="https://docs.python.org/3.8/library/os.html#os.getenv" class="external-link" target="_blank">`os.getenv()`</a> ๐ข ๐ฒ ๐จ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/MoreFilesTest.java
* h -> ../a * i/ * j/ * k * l/ * c * d -> b/i * e/ * f -> /dontdelete * dontdelete/ * a * b/ * c * symlinktodir -> work/dir * </pre> */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 27.4K bytes - Viewed (0) -
docs/ja/docs/tutorial/dependencies/dependencies-with-yield.md
ไพใใฐใ<a href="https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files" class="external-link" target="_blank">ใใกใคใซใ่ชญใฟ่พผใใซใฏ`with`ใไฝฟ็จใใใใจใใงใใพใ</a>: ```Python with open("./somefile.txt") as f: contents = f.read() print(contents) ``` ใใฎๅพใฎ`open("./somefile.txt")`ใฏใใณใณใใญในใใใใผใธใฃใใจๅผใฐใใใชใใธใงใฏใใไฝๆใใพใใ `with`ใใญใใฏใ็ตไบใใใจใไพๅคใใใฃใใจใใฆใใใกใคใซใ็ขบใใซ้ใใพใใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12.4K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
+ " extracted from the -f/--file command-line argument " + arg + " does not exist"); throw new ExitException(1); } } else { System.err.println( "POM file " + arg + " specified with the -f/--file command line argument does not exist"); throw new ExitException(1);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 8.9K bytes - Viewed (0) -
tests/transaction_test.go
t.Fatalf("Transaction should get error when using cancelled context") } } func TestTransactionWithBlock(t *testing.T) { assertPanic := func(f func()) { defer func() { if r := recover(); r == nil { t.Fatalf("The code did not panic") } }() f() } // rollback err := DB.Transaction(func(tx *gorm.DB) error { user := *GetUser("transaction-block", Config{})
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Sep 14 12:58:29 UTC 2024 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
public String name; @Option(name = "-w", aliases = "--webConfigIds", metaVar = "webConfigIds", usage = "Web Config IDs") public String webConfigIds; @Option(name = "-f", aliases = "--fileConfigIds", metaVar = "fileConfigIds", usage = "File Config IDs") public String fileConfigIds;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0) -
tensorflow/c/eager/custom_device_test.cc
// Assign to the variable, copying to the custom device. std::unique_ptr<TFE_TensorHandle, decltype(&TFE_DeleteTensorHandle)> one( TestScalarTensorHandle(context.get(), 111.f), TFE_DeleteTensorHandle); op.reset(TFE_NewOp(context.get(), "AssignVariableOp", status.get())); TFE_OpSetAttrType(op.get(), "dtype", TF_FLOAT); TFE_OpAddInput(op.get(), var_handle, status.get());
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 27 23:39:24 UTC 2020 - 18.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
}; public static final char[] HEX_DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; /** * Generate "hexdump" output of the buffer at src like the following: * * <p><blockquote><pre> * 00000: 04 d2 29 00 00 01 00 00 00 00 00 01 20 45 47 46 |..)......... EGF|
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.4K bytes - Viewed (0)