Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wmlc (0.04 sec)

  1. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

            return run(determinePsCommand()).assertZeroExit().stdout.lines().collect(Collectors.toList());
        }
    
        private static String[] determinePsCommand() {
            if (isWindows()) {
                return new String[]{"wmic", "process", "get", "processid,commandline"};
            } else if (isMacOS()) {
                return new String[]{"ps", "x", "-o", "pid,command"};
            } else {
                return new String[]{"ps", "x", "-o", "pid,cmd"};
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta_test.go

    		},
    	}
    	wlB := &model.WorkloadInfo{
    		Workload: &workloadapi.Workload{
    			Uid:       fmt.Sprintf("Kubernetes//Pod/%s/%s", "test", "b"),
    			Namespace: "test",
    			Name:      "n",
    		},
    	}
    	wlC := &model.WorkloadInfo{
    		Workload: &workloadapi.Workload{
    			Uid:       fmt.Sprintf("Kubernetes//Pod/%s/%s", "test", "c"),
    			Namespace: "test",
    			Name:      "c",
    		},
    	}
    	svcA := &model.ServiceInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

            ]
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def 'can extract process info from windows wmic'() {
            given:
            def output = '''
    CommandLine ProcessId
    \\SystemRoot\\System32\\smss.exe            244
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier_test.go

    			},
    			svcName: "bar",
    			newVirtualServer: &utilipvs.VirtualServer{
    				Address:   netutils.ParseIPSloppy("1.2.3.4"),
    				Protocol:  string(v1.ProtocolTCP),
    				Port:      8080,
    				Scheduler: "wlc",
    				Flags:     utilipvs.FlagHashed,
    			},
    			bindAddr:          false,
    			alreadyBoundAddrs: nil,
    		},
    		{
    			// case 3, old virtual server is nil, and create new virtual server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top