Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for convlit (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			pod := obj.(*example.Pod)
    			if pod.Generation != 2 {
    				if sawConflict {
    					t.Fatalf("unexpected second conflict")
    				}
    				sawConflict = true
    				// simulated stale object - return a conflict
    				return nil, apierrors.NewConflict(example.SchemeGroupVersion.WithResource("pods").GroupResource(), "name", errors.New("foo"))
    			}
    			pod.Generation = 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			prepare: prepare{
    				prebind: change{
    					scheduling: func(in *resourcev1alpha2.PodSchedulingContext) *resourcev1alpha2.PodSchedulingContext {
    						// This does not actually conflict with setting the
    						// selected node, but because the plugin is not using
    						// patching yet, Update nonetheless fails.
    						return st.FromPodSchedulingContexts(in).
    							Label("hello", "world").
    							Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param path The path to convert.
         * @return The absolute path.
         */
        String absoluteProjectPath(String path);
    
        /**
         * <p>Converts a name to a project path relative to this project.</p>
         *
         * @param path The path to convert.
         * @return The relative path.
         */
        String relativeProjectPath(String path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    					rs = tidy
    				} else {
    					conflict := Conflict{
    						Path: mg.g.FindPath(func(m module.Version) bool {
    							return m.Path == "go" && m.Version == v
    						})[1:],
    						Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
    					}
    					msg := conflict.Summary()
    					if cfg.BuildV {
    						msg = conflict.String()
    					}
    					ld.error(errors.New(msg))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top