Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for casePC (0.19 sec)

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

    		var min, max uint64
    		if unsigned {
    			min, _ = constant.Uint64Val(n.Cases[0])
    			max, _ = constant.Uint64Val(n.Cases[len(n.Cases)-1])
    		} else {
    			mn, _ := constant.Int64Val(n.Cases[0])
    			mx, _ := constant.Int64Val(n.Cases[len(n.Cases)-1])
    			min = uint64(mn)
    			max = uint64(mx)
    		}
    		// Compare idx-min with max-min, to see if we can use the jump table.
    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. src/net/http/h2_bundle.go

    		}
    		return nil
    	}
    
    	switch f := f.(type) {
    	case *http2SettingsFrame:
    		return sc.processSettings(f)
    	case *http2MetaHeadersFrame:
    		return sc.processHeaders(f)
    	case *http2WindowUpdateFrame:
    		return sc.processWindowUpdate(f)
    	case *http2PingFrame:
    		return sc.processPing(f)
    	case *http2DataFrame:
    		return sc.processData(f)
    	case *http2RSTStreamFrame:
    		return sc.processResetStream(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Location loc = op.getLoc();
        switch (padding_type) {
          case tensorflow::Padding::VALID: {
            auto zero =
                rewriter.create<arith::ConstantIntOp>(loc, 0, shape_scalar_type);
            *padding_low = *padding_high = zero;
            break;
          }
          case tensorflow::Padding::EXPLICIT:
            break;
          case tensorflow::Padding::SAME: {
            auto zero =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. 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:
    				return &v.state
    			case 1:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    			iNdEx += 8
    		case 2:
    			var length int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    			iNdEx += 8
    		case 2:
    			var length int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    		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
    				return false
    			case table.Chains[i].Name == kubeServicesChain:
    				// KUBE-SERVICES comes before anything (except 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)
  8. pkg/registry/core/service/storage/storage_test.go

    		expectError bool
    	}
    	// These cases were chosen from the full gamut to ensure all "interesting"
    	// cases are covered.
    	testCases := []struct {
    		name            string
    		clusterFamilies []api.IPFamily
    		cases           []testCase
    	}{{
    		name:            "singlestack:v6",
    		clusterFamilies: []api.IPFamily{api.IPv6Protocol},
    		cases: []testCase{{
    			name: "Policy:unset_Families:unset",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.23.md

    - Ignore the case when comparing azure tags in service annotation. ([#104705](https://github.com/kubernetes/kubernetes/pull/104705), [@nilo19](https://github.com/nilo19))
    - Ignore the case when updating Azure tags. ([#104593](https://github.com/kubernetes/kubernetes/pull/104593), [@nilo19](https://github.com/nilo19))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    type ResourceName string
    
    // Resource names must be not more than 63 characters, consisting of upper- or lower-case alphanumeric characters,
    // with the -, _, and . characters allowed anywhere, except the first or last character.
    // The default convention, matching that for annotations, is to use lower-case names, with dashes, rather than
    // camel case, separating compound words.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top