Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. Jenkinsfile

                                                sh 'df -hT'
                                                sh "${cmd}"
                                            } else {
                                                bat 'wmic logicaldisk get size,freespace,caption'
                                                bat "${cmd}"
                                            }
                                        }
                                    } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. Jenkinsfile.s390x

                                    if (isUnix()) {
                                        sh 'df -hT'
                                        sh "${cmd}"
                                    } else {
                                        bat 'wmic logicaldisk get size,freespace,caption'
                                        bat "${cmd}"
                                    }
                                }
                            } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. pkg/kubelet/winstats/perfcounter_nodestats.go

    	return cpuUsageNanoCores
    }
    
    func getSystemUUID() (string, error) {
    	result, err := exec.Command("wmic", "csproduct", "get", "UUID").Output()
    	if err != nil {
    		return "", err
    	}
    	fields := strings.Fields(string(result))
    	if len(fields) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. 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)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

                return line.contains("jetbrains.buildServer.agent.AgentMain");
            }
        }
    
        private StdoutAndPatterns ps() {
            String[] command = isWindows() ? new String[]{"wmic", "process", "get", "processid,commandline"} : new String[]{"ps", "x"};
            ExecResult result = run(command);
            output.printf("Run: %s", Arrays.toString(command));
            output.printf("Stdout: %s", result.stdout);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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