Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for wmin (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        protected Map<String, AuthSchemeProvider> authSchemeProviderMap;
    
        protected int connectionCheckInterval = 5; // sec
    
        protected long idleConnectionTimeout = 60 * 1000L; // 1min
    
        protected Pattern redirectHttpStatusPattern = Pattern.compile("[3][0-9][0-9]");
    
        protected boolean useRobotsTxtDisallows = true;
    
        protected boolean useRobotsTxtAllows = true;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller.go

    		if _, ok := ep.Annotations[resourcelock.LeaderElectionRecordAnnotationKey]; ok {
    			// when there are multiple controller-manager instances,
    			// we observe that it will delete leader-election endpoints after 5min
    			// and cause re-election
    			// so skip the delete here
    			// as leader-election only have endpoints without service
    			continue
    		}
    		key, err := controller.KeyFunc(ep)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/builtins.go

    			return
    		}
    		if nargs < min || min+1 < nargs {
    			check.errorf(call, WrongArgCount, invalidOp+"%v expects %d or %d arguments; found %d", call, min, min+1, nargs)
    			return
    		}
    
    		types := []Type{T}
    		var sizes []int64 // constant integer arguments, if any
    		for _, arg := range argList[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/expr.go

    		// StringSym for constant strings.
    		return n
    
    	case ir.OMETHEXPR:
    		// TODO(mdempsky): Do this right after type checking.
    		n := n.(*ir.SelectorExpr)
    		return n.FuncName()
    
    	case ir.OMIN, ir.OMAX:
    		n := n.(*ir.CallExpr)
    		return walkMinMax(n, init)
    
    	case ir.ONOT, ir.ONEG, ir.OPLUS, ir.OBITNOT, ir.OREAL, ir.OIMAG, ir.OSPTR, ir.OITAB, ir.OIDATA:
    		n := n.(*ir.UnaryExpr)
    		n.X = walkExpr(n.X, init)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// Note, the FPU works with float64 in register.
    		{name: "XSMINJDP", argLength: 2, reg: fp21, asm: "XSMINJDP"}, // fmin(arg0,arg1)
    		{name: "XSMAXJDP", argLength: 2, reg: fp21, asm: "XSMAXJDP"}, // fmax(arg0,arg1)
    
    		{name: "MULLD", argLength: 2, reg: gp21, asm: "MULLD", typ: "Int64", commutative: true}, // arg0*arg1 (signed 64-bit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top