Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 893 for unmerge (0.23 sec)

  1. pkg/proxy/servicechangetracker.go

    		}
    		result.UpdatedServices.Insert(nn)
    
    		sm.merge(change.current)
    		// filter out the Update event of current changes from previous changes
    		// before calling unmerge() so that can skip deleting the Update events.
    		change.previous.filter(change.current)
    		sm.unmerge(change.previous, result.DeletedUDPClusterIPs)
    	}
    	// clear changes after applying them to ServicePortMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. pkg/proxy/endpointschangetracker.go

    func (em EndpointsMap) merge(other EndpointsMap) {
    	for svcPortName := range other {
    		em[svcPortName] = other[svcPortName]
    	}
    }
    
    // Unmerge removes the <service, endpoints> pairs from the current EndpointsMap which are contained in the EndpointsMap passed in.
    func (em EndpointsMap) unmerge(other EndpointsMap) {
    	for svcPortName := range other {
    		delete(em, svcPortName)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/rotate.go

    	return &r
    }
    
    // InMerge tries to generate a new set of parameters representing
    // the intersection between the selected bits and the provided mask
    // as applied to the source value (i.e. pre-rotation).
    // If the intersection is unrepresentable (0 or not contiguous) nil
    // will be returned.
    func (r RotateParams) InMerge(mask uint64) *RotateParams {
    	return r.OutMerge(bits.RotateLeft64(mask, int(r.Amount)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 21 19:19:04 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/covdata/merge.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // This file contains functions and apis to support the "merge"
    // subcommand of "go tool covdata".
    
    import (
    	"flag"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/cmerge"
    	"internal/coverage/decodecounter"
    	"internal/coverage/decodemeta"
    	"internal/coverage/pods"
    	"os"
    )
    
    var outdirflag *string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/internal/coverage/cmerge/merge.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cmerge
    
    // package cmerge provides a few small utility APIs for helping
    // with merging of counter data for a given function.
    
    import (
    	"fmt"
    	"internal/coverage"
    	"math"
    )
    
    type ModeMergePolicy uint8
    
    const (
    	ModeMergeStrict ModeMergePolicy = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 23:26:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. pkg/proto/merge/merge.go

    var options = []OptionFn{
    	// Workaround https://github.com/golang/protobuf/issues/1359, merge duration properly
    	MergeFunctionOptionFn((&durationpb.Duration{}).ProtoReflect().Descriptor().FullName(), ReplaceMergeFn),
    }
    
    func Merge(dst, src proto.Message) {
    	merge(dst, src, options...)
    }
    
    // Merge Code of proto.Merge with modifications to support custom types
    func merge(dst, src proto.Message, opts ...OptionFn) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 17:31:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. cmd/metacache-entries.go

    					}
    					toMerge = toMerge[:0]
    					best = other
    					bestIdx = otherIdx
    					continue
    				}
    				// Leave it to be resolved. Names are different.
    			}
    			if best.name > other.name {
    				toMerge = toMerge[:0]
    				best = other
    				bestIdx = otherIdx
    			}
    		}
    
    		// Merge any unmerged
    		if len(toMerge) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Absorb input zero extension into 'rotate then insert selected bits [into zero]'.
    (RISBGZ (MOVWZreg x) {r}) && r.InMerge(0xffffffff) != nil => (RISBGZ x {*r.InMerge(0xffffffff)})
    (RISBGZ (MOVHZreg x) {r}) && r.InMerge(0x0000ffff) != nil => (RISBGZ x {*r.InMerge(0x0000ffff)})
    (RISBGZ (MOVBZreg x) {r}) && r.InMerge(0x000000ff) != nil => (RISBGZ x {*r.InMerge(0x000000ff)})
    
    // Absorb 'rotate then insert selected bits [into zero]' into zero extension.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/internal/profile/merge.go

    import (
    	"fmt"
    	"sort"
    	"strconv"
    	"strings"
    )
    
    // Merge merges all the profiles in profs into a single Profile.
    // Returns a new profile independent of the input profiles. The merged
    // profile is compacted to eliminate unused samples, locations,
    // functions and mappings. Profiles must have identical profile sample
    // and period types or the merge will fail. profile.Period of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  10. .space/safe-merge.json

    {
      "version": "1.0",
      "builds": [
        {
          "teamcity": {
            "configuration": "Kotlin_KotlinDev_SafeMerge",
            "url": "https://buildserver.labs.intellij.net",
            "token": "${space-safe-merge-kt}",
            "ssl-keystore": "BuildServer client"
          }
        }
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 27 13:43:47 UTC 2023
    - 280 bytes
    - Viewed (0)
Back to top