Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for ifelse (0.14 sec)

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

    		} else {
    			bElse = bEnd
    		}
    		s.condBranch(n.Cond, bThen, bElse, likely)
    
    		if len(n.Body) != 0 {
    			s.startBlock(bThen)
    			s.stmtList(n.Body)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    		if len(n.Else) != 0 {
    			s.startBlock(bElse)
    			s.stmtList(n.Else)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    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. pkg/apis/core/validation/validation.go

    	"WorkingDir":               true,
    	"Ports":                    false,
    	"EnvFrom":                  true,
    	"Env":                      true,
    	"Resources":                false,
    	"VolumeMounts":             true,
    	"VolumeDevices":            true,
    	"LivenessProbe":            false,
    	"ReadinessProbe":           false,
    	"StartupProbe":             false,
    	"Lifecycle":                false,
    	"TerminationMessagePath":   true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    //	lowercase prior to their encoding in HTTP/2. "
    func http2validWireHeaderFieldName(v string) bool {
    	if len(v) == 0 {
    		return false
    	}
    	for _, r := range v {
    		if !httpguts.IsTokenRune(r) {
    			return false
    		}
    		if 'A' <= r && r <= 'Z' {
    			return false
    		}
    	}
    	return true
    }
    
    func http2httpCodeString(code int) string {
    	switch code {
    	case 200:
    		return "200"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier_test.go

    				"node to ClusterIP": {
    					masq: ptr.To(false),
    				},
    				"node to ClusterIP with eTP:Local": {
    					masq: ptr.To(false),
    				},
    				"node to ClusterIP with iTP:Local": {
    					masq: ptr.To(false),
    				},
    				"external to ClusterIP": {
    					masq: ptr.To(false),
    				},
    				"external to ClusterIP with eTP:Local": {
    					masq: ptr.To(false),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          subdiagonal_align = kLeft;
        } else if (align == "RIGHT_RIGHT") {
          superdiagonal_align = kRight;
          subdiagonal_align = kRight;
        } else if (align == "LEFT_RIGHT") {
          superdiagonal_align = kLeft;
          subdiagonal_align = kRight;
        } else if (align == "LEFT_LEFT") {
          superdiagonal_align = kLeft;
          subdiagonal_align = kLeft;
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %res_m4 = "tfl.cumsum"(%arg, %axis_m4) {exclusive = false, reverse = false} : (tensor<1x2x1x3xf32>, tensor<i32>) -> tensor<1x2x1x3xf32>  // Eliminated
      %res_m3 = "tfl.cumsum"(%arg, %axis_m3) {exclusive = false, reverse = false} : (tensor<1x2x1x3xf32>, tensor<i32>) -> tensor<1x2x1x3xf32>
      %res_m2 = "tfl.cumsum"(%arg, %axis_m2) {exclusive = false, reverse = false} : (tensor<1x2x1x3xf32>, tensor<i32>) -> tensor<1x2x1x3xf32>  // Eliminated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage_test.go

    	if tc.expectClusterIPs {
    		proveClusterIPsAllocated(t, storage, before, after)
    	} else if tc.expectHeadless {
    		proveHeadless(t, storage, before, after)
    	} else {
    		proveClusterIPsDeallocated(t, storage, before, after)
    	}
    	if tc.expectNodePorts {
    		proveNodePortsAllocated(t, storage, before, after)
    	} else {
    		proveNodePortsDeallocated(t, storage, before, after)
    	}
    	if tc.expectHealthCheckNodePort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    							Name:    "version",
    							Served:  true,
    							Storage: false,
    						},
    						{
    							Name:    "version2",
    							Served:  true,
    							Storage: false,
    						},
    					},
    					Conversion: &apiextensions.CustomResourceConversion{
    						Strategy: apiextensions.ConversionStrategyType("None"),
    					},
    					PreserveUnknownFields: pointer.BoolPtr(false),
    					Validation: &apiextensions.CustomResourceValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %39 = "tf.All"(%38, %9) {device = "", keep_dims = false} : (tensor<i1>, tensor<0xi32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite386.go

    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386NEGL(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (NEGL (MOVLconst [c]))
    	// result: (MOVLconst [-c])
    	for {
    		if v_0.Op != Op386MOVLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(-c)
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
Back to top