Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for addrEntry (0.22 sec)

  1. src/main/java/jcifs/netbios/NameQueryResponse.java

            if ( address != 0 ) {
                this.addrEntry[ this.addrIndex ] = new NbtAddress(this.recordName, address, groupName, nodeType);
            }
            else {
                this.addrEntry[ this.addrIndex ] = null;
            }
    
            return 6;
        }
    
    
        @Override
        public String toString () {
            return new String(
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameQueryResponse.java

            if( address != 0 ) {
                addrEntry[addrIndex] = new NbtAddress( recordName, address, groupName, nodeType );
            } else {
                addrEntry[addrIndex] = null;
            }
    
            return 6;
        }
        public String toString() {
            return new String( "NameQueryResponse[" +
                super.toString() +
                ",addrEntry=" + addrEntry + "]" );
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/tier-sweeper.go

    //
    //	if gerr == nil {
    //	   os.SetTransitionState(goi)
    //	}
    //
    // // After the overwriting object operation is complete.
    //
    //	if jentry, ok := os.ShouldRemoveRemoteObject(); ok {
    //	    err := globalTierJournal.AddEntry(jentry)
    //	    logger.LogIf(ctx, err)
    //	}
    type objSweeper struct {
    	Object              string
    	Bucket              string
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Apr 17 05:09:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. test-site/activator-launch-1.3.2.jar

    void threshold_$eq(int); public final int[] sizemap(); public final void sizemap_$eq(int[]); public final int seedvalue(); public final void seedvalue_$eq(int); public final int capacity(int); public final int tableSizeSeed(); public final boolean addEntry(Object); public final void nnSizeMapAdd(int); public final void nnSizeMapRemove(int); public final void nnSizeMapReset(int); public final int calcSizeMapSize(int); public final int index(int); public final int elemHashCode(Object); public final int...
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (0)
Back to top