Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ROUND (0.29 sec)

  1. CHANGELOG/CHANGELOG-1.7.md

      * The oidc client plugin has reduce round trips and fix scopes requested ([#45317](https://github.com/kubernetes/kubernetes/pull/45317), [@ericchiang](https://github.com/ericchiang))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.18.md

    - `(*"k8s.io/client-go/rest".Request).{Do,DoRaw,Stream,Watch}` now require callers to pass a `context.Context` as an argument. The context is used for timeout and cancellation signaling and to pass supplementary information to round trippers in the wrapped transport chain. If you don't need any of this functionality, it is sufficient to pass a context created with `context.Background()` to these functions. The `(*"k8s.io/client-go/rest".Request).Context` method is removed now...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v3.AuxInt = int64ToAuxInt(-c & 7)
    		v2.AddArg2(x, v3)
    		v.AddArg2(v0, v2)
    		return true
    	}
    	return false
    }
    func rewriteValueS390X_OpRound(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Round x)
    	// result: (FIDBR [1] x)
    	for {
    		x := v_0
    		v.reset(OpS390XFIDBR)
    		v.AuxInt = int8ToAuxInt(1)
    		v.AddArg(x)
    		return true
    	}
    }
    func rewriteValueS390X_OpRoundToEven(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top