- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,071 for names (0.06 sec)
-
docs/debugging/xattr/main.go
} names = append(names, attrs...) } else { names = append(names, name) } var data [][]string for _, attr := range names { value, err := getxattr(path, attr) if err != nil { data = append(data, []string{attr, errors.Unwrap(err).Error()}) } else { data = append(data, []string{attr, fmt.Sprintf("%d", value)}) } } table.AppendBulk(data) // Add Bulk Data
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Dec 29 23:52:41 UTC 2023 - 3.2K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt
val prefixes: MutableSet<String> = hashSetOf() private val names: MutableSet<String> = hashSetOf() init { givenPrefixes.map { it.replace('.', '/') }.forEach { internalName -> names.add(internalName) prefixes.add("$internalName/") } } fun matches(packageName: String): Boolean { if (names.contains(packageName)) { return true }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 2.6K bytes - Viewed (0) -
dbflute_fess/dfprop/littleAdjustmentMap.dfprop
# [true] # Add schema to table SQL name. (The table name on query is SCHEMA.TABLE) # #; isAvailableAddingSchemaToTableSqlName = false # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o isAvailableAddingCatalogToTableSqlName: (NotRequired - Default false) # [true] # Add catalog to table SQL name. (The table name on query is CATALOG.SCHEMA.TABLE) #
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Headers.kt
/** * Add a header with the specified name and formatted date. Does validation of header names and * value. */ fun add( name: String, value: Date, ) = add(name, value.toHttpDateString()) /** * Add a header with the specified name and formatted instant. Does validation of header names * and value. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 11.5K bytes - Viewed (0) -
docs/en/docs/advanced/generate-clients.md
<img src="/img/tutorial/generate-clients/image06.png"> In this case you have: * `ItemsService` * `UsersService` ### Client Method Names Right now the generated method names like `createItemItemsPost` don't look very clean: ```TypeScript ItemsService.createItemItemsPost({name: "Plumbus", price: 5}) ``` ...that's because the client generator uses the OpenAPI internal **operation ID** for each *path operation*.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.7K bytes - Viewed (0) -
dbflute_fess/dfprop/classificationDeploymentMap.dfprop
# # This property uses classification names of classificationDefinitionMap. # The table name '$$ALL$$' means all tables are target. # The table names and column names are treated as case insensitive. # # You don't need specify here about table classifications. # Because table classifications are auto-deployed by relation information. # # Specification: # map: { # [table-name or $$ALL$$] = map:{
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 795 bytes - Viewed (0) -
cmd/metacache-stream_test.go
if !reflect.DeepEqual(names, want) { t.Errorf("got unexpected result: %#v", names) } err = r.skip(5) if err != nil { t.Fatal(err) } names, err = r.readNames(5) if err != nil { t.Fatal(err) } want = loadMetacacheSampleNames[10:15] if !reflect.DeepEqual(names, want) { t.Errorf("got unexpected result: %#v", names) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 15K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
c.createNewFile(); String[] names = f.list(); assertNotNull(names); assertEquals(3, names.length); Arrays.sort(names); Assert.assertArrayEquals(new String[] { "a", "b", "c" }, names); SmbFile[] files = f.listFiles(); assertNotNull(files);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
public rpc.unicode_string name; public rpc.sid_t sid; @Override public void encode ( NdrBuffer _dst ) throws NdrException { _dst.align(4); _dst.enc_ndr_short(this.name.length); _dst.enc_ndr_short(this.name.maximum_length); _dst.enc_ndr_referent(this.name.buffer, 1); _dst.enc_ndr_referent(this.sid, 1);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 35.6K bytes - Viewed (0) -
callbacks.go
return false }) for _, c := range cs { // show warning message the callback name already exists if idx := getRIndex(names, c.name); idx > -1 && !c.replace && !c.remove && !cs[idx].remove { c.processor.db.Logger.Warn(context.Background(), "duplicated callback `%s` from %s\n", c.name, utils.FileWithLineNum()) } names = append(names, c.name) } sortCallback = func(c *callback) error {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Mar 26 03:33:36 UTC 2024 - 8.6K bytes - Viewed (0)