Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for oldregs (0.17 sec)

  1. pkg/kube/krt/collection.go

    				newRes, newExists := results[key]
    				// Find the old O object
    				oldRes, oldExists := h.collectionState.outputs[key]
    				e := Event[O]{}
    				if newExists && oldExists {
    					if equal(newRes, oldRes) {
    						// NOP change, skip
    						continue
    					}
    					e.Event = controllers.EventUpdate
    					e.New = &newRes
    					e.Old = &oldRes
    					h.collectionState.outputs[key] = newRes
    				} else if newExists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		}
    	}
    	return nil
    }
    
    func (f *WorkFile) AddReplace(oldPath, oldVers, newPath, newVers string) error {
    	return addReplace(f.Syntax, &f.Replace, oldPath, oldVers, newPath, newVers)
    }
    
    func (f *WorkFile) DropReplace(oldPath, oldVers string) error {
    	for _, r := range f.Replace {
    		if r.Old.Path == oldPath && r.Old.Version == oldVers {
    			r.Syntax.markRemoved()
    			*r = Replace{}
    		}
    	}
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	}
    	return nil
    }
    
    func (f *File) AddReplace(oldPath, oldVers, newPath, newVers string) error {
    	return addReplace(f.Syntax, &f.Replace, oldPath, oldVers, newPath, newVers)
    }
    
    func addReplace(syntax *FileSyntax, replace *[]*Replace, oldPath, oldVers, newPath, newVers string) error {
    	need := true
    	old := module.Version{Path: oldPath, Version: oldVers}
    	new := module.Version{Path: newPath, Version: newVers}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    			mActual = mRepl
    		}
    		old := module.Version{Path: m.Path, Version: r.initialVersion[m.Path]}
    		if old.Version == "" {
    			continue
    		}
    		oldActual := old
    		if oldRepl := modload.Replacement(old); oldRepl.Path != "" {
    			oldActual = oldRepl
    		}
    		if mActual == oldActual || mActual.Version == "" || !modfetch.HaveSum(oldActual) {
    			continue
    		}
    		r.work.Add(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    		ResourceVersion: config.ResourceVersion,
    		OwnerReferences: config.OwnerReferences,
    		UID:             types.UID(config.UID),
    	}
    }
    
    func genPatchBytes(oldRes, modRes runtime.Object, patchType types.PatchType) ([]byte, error) {
    	oldJSON, err := json.Marshal(oldRes)
    	if err != nil {
    		return nil, fmt.Errorf("failed marhsalling original resource: %v", err)
    	}
    	newJSON, err := json.Marshal(modRes)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    	var oldSes map[types.NamespacedName]*config.Config
    	if oldWle != nil {
    		if labels.Instance(oldWle.Labels).Equals(curr.Labels) {
    			oldSes = currSes
    		} else {
    			// labels update should trigger proxy update
    			s.XdsUpdater.ProxyUpdate(s.Cluster(), wle.Address)
    			oldSes = getWorkloadServiceEntries(cfgs, oldWle)
    		}
    	}
    	unSelected := difference(oldSes, currSes)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    break;
                }
    
                // add repositories specified by the current model so that we can resolve the parent
                if (!model.getRepositories().isEmpty()) {
                    List<String> oldRepos = request.getModelRepositoryHolder().getRepositories().stream()
                            .map(Object::toString)
                            .toList();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/clean/clean.go

    	if cleanFuzzcache {
    		fuzzDir := cache.Default().FuzzDir()
    		if err := sh.RemoveAll(fuzzDir); err != nil {
    			base.Error(err)
    		}
    	}
    }
    
    var cleaned = map[*load.Package]bool{}
    
    // TODO: These are dregs left by Makefile-based builds.
    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    			}
    			if !bytes.Equal(inRegs, lt.inRegs) {
    				t.Errorf("funcLayout(%v, %v).inRegs=%v, want %v", lt.typ, lt.rcvr, inRegs, lt.inRegs)
    			}
    			if !bytes.Equal(outRegs, lt.outRegs) {
    				t.Errorf("funcLayout(%v, %v).outRegs=%v, want %v", lt.typ, lt.rcvr, outRegs, lt.outRegs)
    			}
    			if ptrs && len(stack) == 0 || !ptrs && len(stack) > 0 {
    				t.Errorf("funcLayout(%v, %v) pointers flag=%v, want %v", lt.typ, lt.rcvr, ptrs, !ptrs)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		err := eqs.AddFunc(
    			func(newReq, oldReq core.NodeSelectorRequirement) bool {
    				// allow newReq to change to a GA key
    				if oldReq.Key != newReq.Key && betaToGALabel[oldReq.Key] == newReq.Key {
    					oldReq.Key = newReq.Key // +k8s:verify-mutation:reason=clone
    				}
    				return apiequality.Semantic.DeepEqual(newReq, oldReq)
    			},
    		)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top