Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 141 for convlit (0.15 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    			t.pos = pos
    			p.next()
    			t.Fun = x
    			t.ArgList, t.HasDots = p.argList()
    			x = t
    
    		case _Lbrace:
    			// operand may have returned a parenthesized complit
    			// type; accept it but complain if we have a complit
    			t := Unparen(x)
    			// determine if '{' belongs to a composite literal or a block statement
    			complit_ok := false
    			switch t.(type) {
    			case *Name, *SelectorExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    			// if one has a directive marker and the other doesn't,
    			// then we have a conflict, since one is deleting or replacing the whole map,
    			// and the other is doing things to individual keys.
    			if okLeft != okRight {
    				return true, nil
    			}
    			// if they both have markers, but they are not the same directive,
    			// then we have a conflict because they're doing different things to the map.
    			if leftMarker != rightMarker {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  3. src/time/format.go

    				b = append(b, 'Z')
    				break
    			}
    			zone := offset / 60 // convert to minutes
    			absoffset := offset
    			if zone < 0 {
    				b = append(b, '-')
    				zone = -zone
    				absoffset = -absoffset
    			} else {
    				b = append(b, '+')
    			}
    			b = appendInt(b, zone/60, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    					},
    				},
    			},
    		},
    		{
    			name: "url regex conflict",
    			root: []*networking.HTTPMatchRequest{
    				{
    					Uri: &networking.StringMatch{
    						MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters := xdstest.FilterClusters(sim.Clusters, func(c *cluster.Cluster) bool {
    				return strings.HasPrefix(c.Name, "inbound")
    			})
    			if len(s.PushContext().ProxyStatus) != 0 {
    				// TODO make this fatal, once inbound conflict is silenced
    				t.Logf("got unexpected error: %+v", s.PushContext().ProxyStatus)
    			}
    			cmap := xdstest.ExtractClusters(clusters)
    			got := xdstest.MapKeys(cmap)
    
    			// Check we have all expected clusters
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    func (x *xlMetaV2) Load(buf []byte) error {
    	if meta, data, err := isIndexedMetaV2(buf); err != nil {
    		return err
    	} else if meta != nil {
    		return x.loadIndexed(meta, data)
    	}
    	// Convert older format.
    	return x.loadLegacy(buf)
    }
    
    func (x *xlMetaV2) loadIndexed(buf xlMetaBuf, data xlMetaInlineData) error {
    	versions, headerV, metaV, buf, err := decodeXLHeaders(buf)
    	if err != nil {
    		return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    	if err != nil {
    		return 0, 0, fmt.Errorf("cannot convert string to integer for index: %q", limitsStr[0])
    	}
    	if x >= int(completions) {
    		return 0, 0, fmt.Errorf("too large index: %q", limitsStr[0])
    	}
    	if len(limitsStr) > 1 {
    		y, err := strconv.Atoi(limitsStr[1])
    		if err != nil {
    			return 0, 0, fmt.Errorf("cannot convert string to integer for index: %q", limitsStr[1])
    		}
    		if y >= int(completions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    		case token.LBRACK:
    			x = p.parseIndexOrSliceOrInstance(x)
    		case token.LPAREN:
    			x = p.parseCallOrConversion(x)
    		case token.LBRACE:
    			// operand may have returned a parenthesized complit
    			// type; accept it but complain if we have a complit
    			t := ast.Unparen(x)
    			// determine if '{' belongs to a composite literal or a block statement
    			switch t.(type) {
    			case *ast.BadExpr, *ast.Ident, *ast.SelectorExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    	info.Rotational = s.rotational
    	info.MountPath = s.drivePath
    	info.Endpoint = s.endpoint.String()
    	info.Scanning = atomic.LoadInt32(&s.scanning) == 1
    	return info, err
    }
    
    // getVolDir - will convert incoming volume names to
    // corresponding valid volume names on the backend in a platform
    // compatible way for all operating systems. If volume is not found
    // an error is generated.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        }
                    }
                }
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Cannot convert a version catalog entry: 'org.gradle.test:lib:{strictly [3.0, 4.0[; prefer 3.0.5}' to an object of type ModuleVersionSelector. Rich versions are not supported for 'force()'.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
Back to top