Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for gids (0.04 sec)

  1. operator/cmd/mesh/uninstall.go

    				rmListString)
    		}
    
    		if len(pids) != 0 && rev != "" {
    			needConfirmation = true
    			message += fmt.Sprintf("There are still %d proxies pointing to the control plane revision %s\n", len(pids), rev)
    			// just print the count only if there is a large list of proxies
    			if len(pids) <= 30 {
    				message += fmt.Sprintf("%s\n", strings.Join(pids, "\n"))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cgroup_manager_linux.go

    	}
    
    	return nil
    }
    
    // Scans through all subsystems to find pids associated with specified cgroup.
    func (m *cgroupManagerImpl) Pids(name CgroupName) []int {
    	// we need the driver specific name
    	cgroupFsName := m.Name(name)
    
    	// Get a list of processes that we need to kill
    	pidsToKill := sets.New[int]()
    	var pids []int
    	for _, val := range m.subsystems.MountPoints {
    		dir := path.Join(val, cgroupFsName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/dwtest/dwtest.go

    type Examiner struct {
    	dies        []*dwarf.Entry
    	idxByOffset map[dwarf.Offset]int
    	kids        map[int][]int
    	parent      map[int]int
    	byname      map[string][]int
    }
    
    // Populate the Examiner using the DIEs read from rdr.
    func (ex *Examiner) Populate(rdr *dwarf.Reader) error {
    	ex.idxByOffset = make(map[dwarf.Offset]int)
    	ex.kids = make(map[int][]int)
    	ex.parent = make(map[int]int)
    	ex.byname = make(map[string][]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. pkg/registry/batch/cronjob/strategy_test.go

    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    
    	// Make sure we correctly implement the interface.
    	// Otherwise a typo could silently change the default.
    	var gcds rest.GarbageCollectionDeleteStrategy = Strategy
    	if got, want := gcds.DefaultGarbageCollectionPolicy(genericapirequest.NewContext()), rest.DeleteDependents; got != want {
    		t.Errorf("DefaultGarbageCollectionPolicy() = %#v, want %#v", got, want)
    	}
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/internal/zstd/testdata/fcf30b99.zero-dictionary-ids.zst

    fcf30b99.zero-dictionary-ids.zst hello hello hello...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:56:15 UTC 2023
    - 64 bytes
    - Viewed (0)
  6. src/os/user/lookup_windows.go

    	var sids []string
    	for _, entry := range entries {
    		if entry.Name == nil {
    			continue
    		}
    		sid, err := lookupGroupName(windows.UTF16PtrToString(entry.Name))
    		if err != nil {
    			return nil, err
    		}
    		sids = append(sids, sid)
    	}
    	return sids, nil
    }
    
    func newUser(uid, gid, dir, username, domain string) (*User, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-uid-gid.golden

    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --gid-owner 1 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 1 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 2 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. cmd/local-locker.go

    				lris, ok := l.lockMap[resource]
    				if !ok {
    					continue
    				}
    				// Collect uids, so we don't mutate while we delete
    				uids := make([]string, 0, len(lris))
    				for _, lri := range lris {
    					uids = append(uids, lri.UID)
    				}
    
    				// Delete collected uids:
    				for _, uid := range uids {
    					lris, ok := l.lockMap[resource]
    					if !ok {
    						// Just to be safe, delete uuids.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonStopEventsTest.groovy

            expect:
            DaemonStopEvents.uniqueRecentDaemonStopEvents([immediateStop1, immediateStop1]) == [immediateStop1]
        }
    
        def "uniqueRecentDaemonStopEvents() returns most severe event given same PIDs"() {
            expect:
            DaemonStopEvents.uniqueRecentDaemonStopEvents([gracefulStop1, immediateStop1]) == [immediateStop1]
        }
    
        def "uniqueRecentDaemonStopEvents() omits stop events older than 1 hour"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/build.gradle.kts

    import gradlebuild.basics.isBundleGroovy4
    import gradlebuild.basics.tasks.PackageListGenerator
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "A library that aids in testing Gradle plugins and build logic in general"
    
    errorprone {
        disabledChecks.addAll(
            "CatchAndPrintStackTrace", // 1 occurrences
            "ImmutableEnumChecker", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top