Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for switch3 (0.19 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			}
    		}
    		var name string
    		switch typ.Kind() {
    		case types.TFLOAT32:
    			switch n.Op() {
    			case ir.OMIN:
    				name = "fmin32"
    			case ir.OMAX:
    				name = "fmax32"
    			}
    		case types.TFLOAT64:
    			switch n.Op() {
    			case ir.OMIN:
    				name = "fmin64"
    			case ir.OMAX:
    				name = "fmax64"
    			}
    		case types.TSTRING:
    			switch n.Op() {
    			case ir.OMIN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    against the value of the switch expression.
    In a type switch, the cases contain types that are compared against the
    type of a specially annotated switch expression.
    The switch expression is evaluated exactly once in a switch statement.
    </p>
    
    <h4 id="Expression_switches">Expression switches</h4>
    
    <p>
    In an expression switch,
    the switch expression is evaluated and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    			switch v := v.(*ArchConfig); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_pkg_apis_istio_v1alpha1_values_types_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*CNIConfig); i {
    			case 0:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    		}
    		resources[p.ResourceName] = true
    		switch p.ResourceName {
    		case core.ResourceCPU, core.ResourceMemory:
    		case "":
    			allErrors = append(allErrors, field.Required(fldPath, ""))
    		default:
    			allErrors = append(allErrors, field.NotSupported(fldPath, p.ResourceName, sets.List(supportedResizeResources)))
    		}
    		switch p.RestartPolicy {
    		case core.NotRequired, core.RestartContainer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	if bitSize == 0 {
    		bitSize = int(strconv.IntSize)
    	}
    
    	s0 := s
    	switch {
    	case len(s) < 1:
    		err = strconv.ErrSyntax
    		goto Error
    
    	case 2 <= base && base <= 36:
    		// valid base; nothing to do
    
    	case base == 0:
    		// Look for octal, hex prefix.
    		switch {
    		case s[0] == '0' && len(s) > 1 && (s[1] == 'x' || s[1] == 'X'):
    			base = 16
    			s = s[2:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

      Ginkgo V2 doesn't accept go test's `-parallel` flags to parallelize Ginkgo specs, please switch to use `ginkgo -p` or `ginkgo -procs=N` instead. ([#109111](https://github.com/kubernetes/kubernetes/pull/109111), [@chendave](https://github.com/chendave)) [SIG API Machinery, Apps, Architecture, Auth, Autoscaling, CLI, Cloud Provider, Cluster Lifecycle,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					StoredVersions: []string{"version"},
    				},
    			},
    			errors: []validationMatch{
    				forbidden("spec", "validation"),
    				forbidden("spec", "subresources"),
    			},
    		},
    		{
    			name: "switch off preserveUnknownFields with structural schema before and after",
    			old: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "plural.group.com",
    					ResourceVersion: "42",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    `Interrupted()` instead. If you are returning `ErrWaitTimeout` from your own methods, switch to creating a location specific `cause err` and pass it to the new method `wait.ErrorInterrupted(cause) error` which will ensure `Interrupted()` returns true for your loop. 
      
      The `wait.NewExponentialBackoffManager` and `wait.NewJitteringBackoffManager` functions have been marked as deprecated.  Callers should switch to using the `Backoff{...}.DelayWithReset(clock, resetInterval)` method and must...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    		return dump.Tables[i].Name < dump.Tables[j].Name
    	})
    
    	// Sort chains
    	for t := range dump.Tables {
    		table := &dump.Tables[t]
    		sort.Slice(table.Chains, func(i, j int) bool {
    			switch {
    			case table.Chains[i].Name == kubeNodePortsChain:
    				// KUBE-NODEPORTS comes before anything
    				return true
    			case table.Chains[j].Name == kubeNodePortsChain:
    				// anything goes after KUBE-NODEPORTS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    gnoreErrors,a,s,o,u,c,f,d,p,m,b,x=r.length,y=0,w=[],k=[];function S(){return y}function _(R){throw e.error("Unclosed "+R,y)}function E(){return k.length===0&&y>=x}function I(R){if(k.length)return k.pop();if(y>=x)return;let J=R?R.ignoreUnclosed:!1;switch(a=r.charCodeAt(y),a){case Ri:case wr:case Bi:case Fi:case Mi:{s=y;do s+=1,a=r.charCodeAt(s);while(a===wr||a===Ri||a===Bi||a===Fi||a===Mi);b=["space",r.slice(y,s)],y=s-1;break}case m0:case g0:case b0:case v0:case S0:case x0:case w0:{let ue=String....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top