Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 335 for mod$ (0.11 sec)

  1. src/net/http/clientserver_test.go

    func TestTrailersServerToClient(t *testing.T) {
    	run(t, func(t *testing.T, mode testMode) {
    		testTrailersServerToClient(t, mode, false)
    	})
    }
    func TestTrailersServerToClientFlush(t *testing.T) {
    	run(t, func(t *testing.T, mode testMode) {
    		testTrailersServerToClient(t, mode, true)
    	})
    }
    
    func testTrailersServerToClient(t *testing.T, mode testMode, flush bool) {
    	const body = "Some body"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/builtins.go

    					return
    				}
    
    				if x.mode == constant_ && a.mode == constant_ {
    					if constant.Compare(a.val, op, x.val) {
    						*x = *a
    					}
    				} else {
    					x.mode = value
    				}
    			}
    		}
    
    		// If nargs == 1, make sure x.mode is either a value or a constant.
    		if x.mode != constant_ {
    			x.mode = value
    			// A value must not be untyped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/go/types/call.go

    		id := x.id
    		if !check.builtin(x, call, id) {
    			x.mode = invalid
    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    			check.hasCallOrRecv = true
    		}
    		return predeclaredFuncs[id].kind
    	}
    
    	// ordinary function/method call
    	// signature may be generic
    	cgocall := x.mode == cgofunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. internal/bucket/object/lock/lock.go

    // Enabled indicates object locking is enabled
    const Enabled = "Enabled"
    
    // RetMode - object retention mode.
    type RetMode string
    
    const (
    	// RetGovernance - governance mode.
    	RetGovernance RetMode = "GOVERNANCE"
    
    	// RetCompliance - compliance mode.
    	RetCompliance RetMode = "COMPLIANCE"
    )
    
    // Valid - returns if retention mode is valid
    func (r RetMode) Valid() bool {
    	switch r {
    	case RetGovernance, RetCompliance:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

        BigInteger x = BigInteger.TEN.pow(100);
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
          assertEquals(100, BigIntegerMath.log10(x, mode));
        }
      }
    
      @GwtIncompatible // TODO
      public void testSqrtZeroAlwaysZero() {
        for (RoundingMode mode : ALL_ROUNDING_MODES) {
          assertEquals(ZERO, BigIntegerMath.sqrt(ZERO, mode));
        }
      }
    
      @GwtIncompatible // TODO
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/runtime/netpoll.go

    		rg = netpollunblock(pd, 'r', true, &delta)
    	}
    	if mode == 'w' || mode == 'r'+'w' {
    		wg = netpollunblock(pd, 'w', true, &delta)
    	}
    	if rg != nil {
    		toRun.push(rg)
    	}
    	if wg != nil {
    		toRun.push(wg)
    	}
    	return delta
    }
    
    func netpollcheckerr(pd *pollDesc, mode int32) int {
    	info := pd.info()
    	if info.closing() {
    		return pollErrClosing
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. hack/unwanted-dependencies.json

          "github.com/gorilla/handlers": "unmaintained, archive mode",
          "github.com/gorilla/mux": "unmaintained, archive mode",
          "github.com/gorilla/rpc": "unmaintained, archive mode",
          "github.com/gorilla/schema": "unmaintained, archive mode",
          "github.com/gregjones/httpcache": "unmaintained, archive mode",
          "github.com/grpc-ecosystem/go-grpc-prometheus": "unmaintained, archive mode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/call.go

    		id := x.id
    		if !check.builtin(x, call, id) {
    			x.mode = invalid
    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    			check.hasCallOrRecv = true
    		}
    		return predeclaredFuncs[id].kind
    	}
    
    	// ordinary function/method call
    	// signature may be generic
    	cgocall := x.mode == cgofunc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_linux.go

    	}
    
    	err := s.setupConntrack(ctx)
    	if err != nil {
    		return err
    	}
    
    	return nil
    }
    
    // isIPTablesBased checks whether mode is based on iptables rather than nftables
    func isIPTablesBased(mode proxyconfigapi.ProxyMode) bool {
    	return mode == proxyconfigapi.ProxyModeIPTables || mode == proxyconfigapi.ProxyModeIPVS
    }
    
    // getIPTables returns an array of [IPv4, IPv6] utiliptables.Interfaces. If primaryFamily
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux.go

    			fmode = (st.Mode >> 3) & 7
    		} else {
    			fmode = st.Mode & 7
    		}
    	}
    
    	if fmode&mode == mode {
    		return nil
    	}
    
    	return EACCES
    }
    
    //sys	fchmodat(dirfd int, path string, mode uint32) (err error)
    //sys	fchmodat2(dirfd int, path string, mode uint32, flags int) (err error) = _SYS_fchmodat2
    
    func Fchmodat(dirfd int, path string, mode uint32, flags int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top