Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for wmlc (0.04 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.vsf",
    				"application/vnd.wap.sic",
    				"application/vnd.wap.slc",
    				"application/vnd.wap.wbxml",
    				"application/vnd.wap.wmlc",
    				"application/vnd.wap.wmlscriptc",
    				"application/vnd.webturbo",
    				"application/vnd.wfa.wsc",
    				"application/vnd.wmc",
    				"application/vnd.wmf.bootstrap",
    				"application/vnd.wordperfect",
    				"application/vnd.wqd",
    				"application/vnd.wrq-hp3000-labelled",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.wbxml"/>
      </mime-type>
    
      <mime-type type="application/vnd.wap.wmlc">
        <_comment>Compiled WML Document</_comment>
        <glob pattern="*.wmlc"/>
      </mime-type>
    
      <mime-type type="application/vnd.wap.wmlscriptc">
        <_comment>Compiled WML Script</_comment>
        <glob pattern="*.wmlsc"/>
      </mime-type>
    
      <mime-type type="application/vnd.webturbo">
        <glob pattern="*.wtb"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/bug-report.yaml

            <details>
    
            ```console
            # On Linux:
            $ cat /etc/os-release
            # paste output here
            $ uname -a
            # paste output here
    
            # On Windows:
            C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
            # paste output here
            ```
    
            </details>
    
      - type: textarea
        id: installer
        attributes:
          label: Install tools
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 28 09:34:43 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/util/ipvs_linux_test.go

    				FWMark:        0,
    				SchedName:     "wlc",
    				Flags:         uint32(0 + FlagHashed),
    				Timeout:       100,
    				Netmask:       128,
    				AddressFamily: unix.AF_INET6,
    				Address:       netutils.ParseIPSloppy("2012::beef"),
    				PEName:        "",
    			},
    			VirtualServer{
    				Address:   netutils.ParseIPSloppy("2012::beef"),
    				Protocol:  "UDP",
    				Port:      33434,
    				Scheduler: "wlc",
    				Flags:     ServiceFlags(0),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. cmd/kubelet/app/init_windows.go

    // and specifies the priority class for the job object to the specified value.
    // A job object is used here so that any spawned processes such as powershell or
    // wmic are created at the specified thread priority class.
    // Running kubelet with above normal / high priority  can help improve
    // responsiveness on machines with high CPU utilization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 01:54:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top