Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for addEntry (0.05 sec)

  1. internal/event/target/elasticsearch.go

    	stop()
    	entryExists(context.Context, string, string) (bool, error)
    	removeEntry(context.Context, string, string) error
    	updateEntry(context.Context, string, string, event.Event) error
    	addEntry(context.Context, string, event.Event) error
    }
    
    // ElasticsearchArgs - Elasticsearch target arguments.
    type ElasticsearchArgs struct {
    	Enable     bool            `json:"enable"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    }
    
                    if( response.received && response.resultCode == 0 ) {
                        int last = response.addrEntry.length - 1;
                        response.addrEntry[last].hostName.srcHashCode = addr.hashCode();
                        return response.addrEntry[last];
                    }
                } while( --n > 0 && request.isBroadcast );
    
                throw new UnknownHostException( name.name );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    }
    
                    if ( response.received && response.resultCode == 0 ) {
                        int last = response.addrEntry.length - 1;
                        response.addrEntry[ last ].hostName.srcHashCode = addr.hashCode();
                        return response.addrEntry[ last ];
                    }
                }
                while ( --n > 0 && request.isBroadcast );
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServicePacket.java

                    + ( src[ srcIndex + 3 ] & 0xFF );
        }
    
    
        static int readNameTrnId ( byte[] src, int srcIndex ) {
            return readInt2(src, srcIndex);
        }
    
        int addrIndex;
        NbtAddress[] addrEntry;
    
        int nameTrnId;
    
        int opCode, resultCode, questionCount, answerCount, authorityCount, additionalCount;
        boolean received, isResponse, isAuthAnswer, isTruncated, isRecurDesired, isRecurAvailable, isBroadcast;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

                    ( src[srcIndex + 3] & 0xFF );
        }
    
        static int readNameTrnId( byte[] src, int srcIndex ) {
            return readInt2( src, srcIndex );
        }
    
        int addrIndex;
        NbtAddress[] addrEntry;
    
        int nameTrnId;
    
        int opCode,
                resultCode,
                questionCount,
                answerCount,
                authorityCount,
                additionalCount;
        boolean received,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
Back to top