Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for callername (0.18 sec)

  1. src/testing/fuzz.go

    	// instead of the caller.
    	f.mu.Lock()
    	defer f.mu.Unlock()
    	if f.helperPCs == nil {
    		f.helperPCs = make(map[uintptr]struct{})
    	}
    	// repeating code from callerName here to save walking a stack frame
    	var pc [1]uintptr
    	n := runtime.Callers(2, pc[:]) // skip runtime.Callers + Helper
    	if n == 0 {
    		panic("testing: zero callers found")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/SessionRequestPacket.java

            this.type = SESSION_REQUEST;
            this.calledName = new Name(config, calledName);
            this.callingName = new Name(config, callingName);
        }
    
    
        @Override
        int writeTrailerWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            dstIndex += this.calledName.writeWireFormat(dst, dstIndex);
            dstIndex += this.callingName.writeWireFormat(dst, dstIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.cc

      auto callsite_loc = llvm::dyn_cast<CallSiteLoc>(attr);
    
      if (!mlir::isa<NameLoc>(callsite_loc.getCaller())) return false;
      StringRef caller_name =
          mlir::cast<NameLoc>(callsite_loc.getCaller()).getName().strref();
      return caller_name.starts_with(kQuantizationUnitPrefix) &&
             caller_name.ends_with(kQuantizationUnitSuffix);
    }
    
    std::optional<QuantizationUnitLoc::QuantizationUnit>
    FindQuantizationUnitFromLoc(Location loc) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java

    public class SessionRequestPacket extends SessionServicePacket {
    
        private Name calledName, callingName;
    
        SessionRequestPacket() {
            calledName = new Name();
            callingName = new Name();
        }
        public SessionRequestPacket( Name calledName, Name callingName ) {
            type = SESSION_REQUEST;
            this.calledName = calledName;
            this.callingName = callingName;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NbtSocket.java

        }
        public NbtSocket( NbtAddress address, String calledName, int port,
                                    InetAddress localAddr, int localPort ) throws IOException {
            super( address.getInetAddress(), ( port == 0 ? SSN_SRVC_PORT : port ),
                                    localAddr, localPort );
            this.address = address;
            if( calledName == null ) {
                this.calledName = address.hostName;
            } else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/UniAddress.java

            } else {
                calledName = ((InetAddress)addr).getHostName();
                if( isDotQuadIP( calledName )) {
                    calledName = NbtAddress.SMBSERVER_NAME;
                } else {
                    int i = calledName.indexOf( '.' );
                    if( i > 1 && i < 15 ) {
                        calledName = calledName.substring( 0, i ).toUpperCase();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/UniAddress.java

            }
    
            this.calledName = ( (InetAddress) this.addr ).getHostName();
            if ( isDotQuadIP(this.calledName) ) {
                this.calledName = NbtAddress.SMBSERVER_NAME;
            }
            else {
                int i = this.calledName.indexOf('.');
                if ( i > 1 && i < 15 ) {
                    this.calledName = this.calledName.substring(0, i).toUpperCase();
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                    case 0x1D:
                        calledName = SMBSERVER_NAME;
                }
            }
    
            return calledName;
        }
        public String nextCalledName() {
    
            if( calledName == hostName.name ) {
                calledName = SMBSERVER_NAME;
            } else if( calledName == SMBSERVER_NAME ) {
                NbtAddress[] addrs;
    
                try {
                    addrs = CLIENT.getNodeStatus( this );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/TestResultTest.groovy

            TestResult largerClass = new TestResult('name', 0, class3)
            TestResult smallerName = new TestResult('a', 0, class1)
            TestResult largerName = new TestResult('z', 0, class1)
    
            expect:
            [result, largerName, smallerClass, largerClass, smallerName].sort() == [smallerClass, smallerName, result, largerName, largerClass]
        }
    
        def doesNotDiscardDuplicatesWhenSorting() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NbtAddress.java

        @Override
        public String firstCalledName () {
    
            this.calledName = this.hostName.name;
    
            if ( Character.isDigit(this.calledName.charAt(0)) ) {
                int i, len, dots;
                char[] data;
    
                i = dots = 0; /* quick IP address validation */
                len = this.calledName.length();
                data = this.calledName.toCharArray();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
Back to top