Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 126 for tt (0.03 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

        }
    /**
     * Authenticate arbitrary credentials represented by the
     * <tt>NtlmPasswordAuthentication</tt> object against the domain controller
     * specified by the <tt>UniAddress</tt> parameter. If the credentials are
     * not accepted, an <tt>SmbAuthException</tt> will be thrown. If an error
     * occurs an <tt>SmbException</tt> will be thrown. If the credentials are
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    		if err != nil {
    			return // invalid type
    		}
    
    		var T0 types.Type // string type in the type set of T
    
    		for _, tt := range ttypes {
    			u, _ := tt.Underlying().(*types.Basic)
    			if u != nil && u.Kind() == types.String {
    				T0 = tt
    				break
    			}
    		}
    
    		if T0 == nil {
    			// No target types have an underlying type of string.
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/list.go

    				return false
    			}
    			num = num*10 + int(c) - '0'
    		}
    
    	}
    	if !t.trimSpace(1, 1, true) {
    		return false
    	}
    	n++
    	tt := t
    	m := 0
    	for i := 0; i < 3 && tt.trimSpace(1, 1, false); i++ {
    		m++
    	}
    	if !tt.trimSpace(1, 1, true) {
    		n += m
    		t = tt
    	}
    
    	// point of no return
    
    	var list *listBuilder
    	if c, ok := p.nextB().(*listBuilder); ok {
    		list = c
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/match.go

    					if script.scriptID == h.maxScript {
    						tt, index = h.tag, i
    						break outer
    					}
    				}
    			}
    		}
    		// TODO: select first language tag based on script.
    	}
    	if w.RegionID != tt.RegionID && w.RegionID != 0 {
    		if w.RegionID != 0 && tt.RegionID != 0 && tt.RegionID.Contains(w.RegionID) {
    			tt.RegionID = w.RegionID
    			tt.RemakeString()
    		} else if r := w.RegionID.String(); len(r) == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // and "va" in the "u" extension.
    func (t Tag) LanguageTag() Tag {
    	if t.full == nil {
    		return Tag{language: t.language, locale: t.language}
    	}
    	tt := t.Tag()
    	tt.SetTypeForKey("rg", "")
    	tt.SetTypeForKey("va", "")
    	return Make(tt)
    }
    
    // RegionalTag returns the regional variant of the tag.
    //
    // At the moment this means that the region is set from the regional subtag
    // "rg" in the "u" extension.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/fix/typecheck.go

    				if len(cas.List) == 1 {
    					// Variable has specific type only when there is
    					// exactly one type in the case list.
    					if tt := typeof[cas.List[0]]; isType(tt) {
    						tt = getType(tt)
    						typeof[varx] = tt
    						typeof[varx.Obj] = tt
    						typecheck1(cfg, cas.Body, typeof, assign)
    					}
    				}
    			}
    			// Restore t.
    			typeof[varx] = t
    			typeof[varx.Obj] = t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/typecheck.go

    				star := ir.NewStarExpr(base.Pos, n.X)
    				star.SetImplicit(true)
    				n.X = typecheck(star, ctxType|ctxExpr)
    			} else if tt.IsPtr() && tt.Elem().IsPtr() && types.Identical(derefall(tt), derefall(rcvr)) {
    				base.Errorf("calling method %v with receiver %L requires explicit dereference", n.Sel, n.X)
    				for tt.IsPtr() {
    					// Stop one level early for method with pointer receiver.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SIDCacheImpl.java

         * @param sids
         *            The SIDs that should be resolved. After this function is called, the names associated with the SIDs
         *            may be queried with the <tt>toDisplayString</tt>, <tt>getDomainName</tt>, and <tt>getAccountName</tt>
         *            methods.
         */
        @Override
        public void resolveSids ( CIFSContext tc, String authorityServerName, jcifs.SID[] sids ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/gen/constFoldGen.go

    						continue
    					}
    					fmt.Fprintf(w, "\ty = %d\n", d)
    					fmt.Fprintf(w, "\tr = x %s y\n", o.symbol)
    					want := ansU(c, d, s.name, o.symbol)
    					fmt.Fprintf(w, "\tif r != %s {\n", want)
    					fmt.Fprintf(w, "\t\tt.Errorf(\"%d %%s %d = %%d, want %s\", %q, r)\n", c, d, want, o.symbol)
    					fmt.Fprintf(w, "\t}\n")
    				}
    			}
    			// signed test cases
    			for _, c := range s.i {
    				fmt.Fprintf(w, "\tx = %d\n", c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

     * </i></font>
     * <p>
     * When using the <tt>java.net.URL</tt> class with
     * 'smb://' URLs it is necessary to first call the static
     * <tt>jcifs.Config.registerSmbURLHandler();</tt> method. This is required
     * to register the SMB protocol handler.
     * <p>
     * The userinfo component of the SMB URL (<tt>domain;user:pass</tt>) must
     * be URL encoded if it contains reserved characters. According to RFC 2396
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top