- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 508 for addArg (0.08 sec)
-
cni/pkg/nodeagent/ztunnelserver.go
} var _ ZtunnelServer = &ztunnelServer{} func newZtunnelServer(addr string, pods PodNetnsCache) (*ztunnelServer, error) { if addr == "" { return nil, fmt.Errorf("addr cannot be empty") } resolvedAddr, err := net.ResolveUnixAddr("unixpacket", addr) if err != nil { return nil, fmt.Errorf("failed to resolve unix addr: %w", err) } // remove potentially existing address
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 16:08:35 UTC 2024 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
return ssn; } boolean matches ( Address addr, int prt, InetAddress laddr, int lprt, String hostName ) { if ( this.state == 5 || this.state == 6 ) { // don't reuse disconnecting/disconnected transports return false; } if ( hostName == null ) hostName = addr.getHostName();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
docs/en/docs/tutorial/bigger-applications.md
* Path `prefix`: `/items`. * `tags`: (just one tag: `items`). * Extra `responses`. * `dependencies`: they all need that `X-Token` dependency we created. So, instead of adding all that to each *path operation*, we can add it to the `APIRouter`. ```Python hl_lines="5-10 16 21" title="app/routers/items.py" {!../../docs_src/bigger_applications/app/routers/items.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
if (!urlValue.startsWith("#") && protocolHelper.isValidWebProtocol(urlValue)) { final String u = duplicateHostHelper.convert(urlValue); crawler.addUrl(u); if (logger.isInfoEnabled()) { logger.info("Target URL: {}", u); } } })); // set included urls
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient(); if (logger.isDebugEnabled()) { logger.debug("Adding {}", dataMap); } // required check final Object urlObj = dataMap.get(fessConfig.getIndexFieldUrl()); if (urlObj == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.9K bytes - Viewed (0) -
architecture/networking/controllers.md
Construction should create informers (via `kclient.New`), setup a queue (via `controllers.NewQueue`), and register event handlers on the informers. Often, these handlers are adding something to the queue like `client.AddEventHandler(controllers.ObjectHandler(queue.AddObject))`. Construction should NOT actually start running all of these things, do I/O, or block in anyway.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Feb 09 17:41:25 UTC 2024 - 4.9K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# o objectTypeTargetList: (NotRequired - Default list:{TABLE;VIEW}) # If you want to include other object types in generating target, # you should specify the list of included object types as adding. # e.g. Synonym of Oracle --> list:{TABLE ; VIEW ; SYNONYM} # This is only for the main schema. Additional schemas are unconcerned. # However ReplaceSchema and Sql2Entity task also uses this.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java
} public void setSeed(final String seed) { this.seed = seed; } public void setWindowSize(final int windowSize) { this.windowSize = windowSize; } public void addTag(final String tag) { tags.add(tag); } public void addRole(final String role) { roles.add(role); } public void addField(final String field) { fields.add(field);
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 7K bytes - Viewed (0) -
cni/pkg/nodeagent/ztunnelserver_test.go
} { // go uses @ instead of \0 for abstract unix sockets addr := fmt.Sprintf("@testaddr%d", ztunnelTestCounter.Add(1)) ztun, err := newZtunnelServer(addr, pods) if err != nil { panic(err) } go ztun.Run(ctx) // now as a client connect confirm we and get snapshot resolvedAddr, err := net.ResolveUnixAddr("unixpacket", addr) if err != nil { panic(err) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 12 21:47:31 UTC 2024 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
* host with the same IP address. * * @param addr * the address to query * @return resolved addresses * @throws UnknownHostException * if address cannot be resolved */ NetbiosAddress[] getNbtAllByAddress ( NetbiosAddress addr ) throws UnknownHostException; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.9K bytes - Viewed (0)