- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 3,916 for name (0.03 sec)
-
src/main/java/jcifs/smb1/netbios/Name.java
Registered: 2025-05-25 00:10 - Last Modified: 2019-03-22 20:39 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
} this.name = name.toUpperCase(); this.hexCode = hexCode; this.scope = scope != null && scope.length() > 0 ? scope : cfg.getNetbiosScope(); this.srcHashCode = 0; } /** * @param cfg * @param name */ public Name ( Configuration cfg, NetbiosName name ) { this.config = cfg; this.name = name.getName();
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 7.7K bytes - Viewed (0) -
internal/event/name.go
return []Name{ ObjectManyVersions, ObjectLargeVersions, PrefixManyFolders, } case Everything: res := make([]Name, objectSingleTypesEnd-1) for i := range res { res[i] = Name(i + 1) } return res default: return []Name{name} } } // Mask returns the type as mask. // Compound "All" types are expanded. func (name Name) Mask() uint64 {
Registered: 2025-05-25 19:28 - Last Modified: 2025-02-18 16:25 - 10.4K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/route.go
if len(routes) == 0 { return nil, fmt.Errorf("no routes found") } sort.Slice(routes, func(i, j int) bool { iName, err := strconv.Atoi(routes[i].Name) if err != nil { return false } jName, err := strconv.Atoi(routes[j].Name) if err != nil { return false } return iName < jName }) return routes, nil } func isPassthrough(action any) bool { a, ok := action.(*route.Route_Route)
Registered: 2025-05-28 22:53 - Last Modified: 2024-08-08 20:44 - 7.2K bytes - Viewed (0) -
src/archive/tar/writer_test.go
for _, test := range []struct { name string h *Header }{{ name: "name too long", h: &Header{Name: strings.Repeat("a", maxSpecialFileSize)}, }, { name: "linkname too long", h: &Header{Linkname: strings.Repeat("a", maxSpecialFileSize)}, }, { name: "uname too long", h: &Header{Uname: strings.Repeat("a", maxSpecialFileSize)}, }, { name: "gname too long",
Registered: 2025-05-27 11:13 - Last Modified: 2025-02-03 16:38 - 39.8K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/cluster.go
iDirection, iSubset, iName, iPort := safelyParseSubsetKey(clusters[i].Name) jDirection, jSubset, jName, jPort := safelyParseSubsetKey(clusters[j].Name) if iName == jName { if iSubset == jSubset { if iPort == jPort { return iDirection < jDirection } return iPort < jPort } return iSubset < jSubset } return iName < jName }) return clusters, nil }
Registered: 2025-05-28 22:53 - Last Modified: 2023-05-11 05:38 - 5.9K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
return meta.Name } // Use the Istio convention pod-name[.namespace] return fmt.Sprintf("%s.%s", meta.Name, meta.Namespace) } func printService(writer io.Writer, svc corev1.Service, pod *corev1.Pod) { fmt.Fprintf(writer, "Service: %s\n", kname(svc.ObjectMeta)) for _, port := range svc.Spec.Ports { if port.Protocol != "TCP" { // Ignore UDP ports, which are not supported by Istio continue }
Registered: 2025-05-28 22:53 - Last Modified: 2025-02-25 05:44 - 50.6K bytes - Viewed (0) -
plugin.xml
<param name="plugin.groupId" value="org/codelibs/opensearch" /> <param name="plugin.name.prefix" value="opensearch-" /> <param name="plugin.name" value="configsync" /> <param name="plugin.version" value="3.0.0" /> <param name="plugin.zip.version" value="3.0.0" /> </antcall> <!-- minhash --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" />
Registered: 2025-05-26 08:04 - Last Modified: 2025-05-24 12:52 - 3.5K bytes - Viewed (0) -
.teamcity/subprojects.json
[ { "name": "antlr", "path": "platforms/software/antlr", "unitTests": true, "functionalTests": true, "crossVersionTests": false }, { "name": "api-metadata", "path": "platforms/core-configuration/api-metadata", "unitTests": false, "functionalTests": false, "crossVersionTests": false }, { "name": "architecture-test", "path": "testing/architecture-test",
Registered: 2025-05-28 11:36 - Last Modified: 2025-05-19 18:16 - 35.9K bytes - Viewed (0) -
tests/generics_test.go
} db.Where("?.name = ?", joinTable, u.Company.Name) return nil }).Where(map[string]any{"name": u.Name}).First(ctx) if err != nil { t.Fatalf("Joins failed: %v", err) } if result.Name != u.Name || result.Company.Name != u.Company.Name { t.Fatalf("Joins expected %s, got %+v", u.Name, result) } // Raw Subquery JOIN + WHERE
Registered: 2025-05-25 09:35 - Last Modified: 2025-05-25 07:40 - 27K bytes - Viewed (0)