Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,066 for procMs (0.2 sec)

  1. pkg/kubelet/cm/helpers_linux.go

    }
    
    // getCgroupProcs takes a cgroup directory name as an argument
    // reads through the cgroup's procs file and returns a list of tgid's.
    // It returns an empty list if a procs file doesn't exists
    func getCgroupProcs(dir string) ([]int, error) {
    	procsFile := filepath.Join(dir, "cgroup.procs")
    	f, err := os.Open(procsFile)
    	if err != nil {
    		if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/FastFallbackTest.kt

        )
    
        val call = client.newCall(Request(url))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("hello from IPv6")
    
        // In the process we made one successful connection attempt.
        assertThat(listener.recordedEventTypes().filter { it == "ConnectStart" }).hasSize(1)
        assertThat(listener.recordedEventTypes().filter { it == "ConnectFailed" }).hasSize(0)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            import static org.codehaus.groovy.runtime.ProcessGroovyMethods.execute
    
            @groovy.transform.CompileStatic
            void runStuff() {
                $command
                def process = $processCreator
                process.waitForProcessOutput(System.out, System.err)
            }
    
            runStuff()
            """)
    
            when:
            configurationCacheFails(":help")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_en.properties

    errors.login_error=Username or Password is not correct.
    errors.sso_login_error=Failed to process SSO login.
    errors.could_not_find_log_file=Could not find {0}.
    errors.failed_to_start_crawl_process=Failed to start a crawl process.
    errors.invalid_design_jsp_file_name=Invalid JSP file.
    errors.design_jsp_file_does_not_exist=JSP file does not exist.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_message.properties

    errors.login_error=Username or Password is not correct.
    errors.sso_login_error=Failed to process SSO login.
    errors.could_not_find_log_file=Could not find {0}.
    errors.failed_to_start_crawl_process=Failed to start a crawl process.
    errors.invalid_design_jsp_file_name=Invalid JSP file.
    errors.design_jsp_file_does_not_exist=JSP file does not exist.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    		if testenv.SyscallIsNotSupported(err) {
    			t.Skipf("skipping: could not start process with CLONE_NEWNS: %v", err)
    		}
    		t.Fatalf("unshare failed: %v\n%s", err, out)
    	} else if len(out) != 0 {
    		if bytes.HasPrefix(out, []byte(mountNotSupported)) {
    			t.Skipf("skipping: helper process reported %s", out)
    		}
    		t.Fatalf("unexpected output from helper process: %s", out)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/pod_container_manager_linux.go

    }
    
    // Kill one process ID
    func (m *podContainerManagerImpl) killOnePid(pid int) error {
    	// os.FindProcess never returns an error on POSIX
    	// https://go-review.googlesource.com/c/go/+/19093
    	p, _ := os.FindProcess(pid)
    	if err := p.Kill(); err != nil {
    		// If the process already exited, that's fine.
    		if errors.Is(err, os.ErrProcessDone) {
    			klog.V(3).InfoS("Process no longer exists", "pid", pid)
    			return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. cni/pkg/repair/repaircontroller.go

    		}
    		return nil
    	}
    	log.Infof("Repairing pod...")
    
    	// Fetch the pod's network namespace. This must run in the host process due to how the procfs /ns/net works.
    	// This will get a network namespace ID. This ID is scoped to the network namespace we running in.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    You may also want to configure custom settings for the new process:
    
    .buildSrc/src/main/java/CreateMD5.java
    [source,java]
    ----
    include::{snippetsPath}/workerApi/md5ProcessIsolation/groovy/buildSrc/src/main/java/CreateMD5.java[]
    ----
    <1> Change the isolation mode to `PROCESS`.
    <2> Set up the link:{javadocPath}/org/gradle/process/JavaForkOptions.html[JavaForkOptions] for the new process.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_amd64.go

    }
    
    type Sysinfo_t struct {
    	Uptime    int64
    	Loads     [3]uint64
    	Totalram  uint64
    	Freeram   uint64
    	Sharedram uint64
    	Bufferram uint64
    	Totalswap uint64
    	Freeswap  uint64
    	Procs     uint16
    	Pad       uint16
    	Pad_cgo_0 [4]byte
    	Totalhigh uint64
    	Freehigh  uint64
    	Unit      uint32
    	X_f       [0]byte
    	Pad_cgo_1 [4]byte
    }
    
    type Utsname struct {
    	Sysname    [65]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top