Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for pkid (0.04 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonStatusAndErrorReportingTest.groovy

        def "PID can be null"() {
            given:
            def daemonContext = new DefaultDaemonContext(null, null, null, null, null, null, null, false, NativeServicesMode.ENABLED, null)
    
            when:
            def pid = daemonContext.pid;
    
            then:
            noExceptionThrown()
            pid == null
        }
    
        def "PID unboxing should not happen in Status"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/ctrlz/topics/assets/templates/proc.html

            <tr>
                <td>Hostname</td>
                <td>{{.Hostname}}</td>
            </tr>
    
            <tr>
                <td>Parent Process Id</td>
                <td>{{.Ppid}}</td>
            </tr>
    
            <tr>
                <td>Process Id</td>
                <td>{{.Pid}}</td>
            </tr>
    
            <tr>
                <td>Temporary Directory</td>
                <td>{{.TempDir}}</td>
            </tr>
    
            <tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/crypto/tls/generate_cert.go

    // 'cert.pem' and 'key.pem' and will overwrite existing files.
    
    package main
    
    import (
    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/pem"
    	"flag"
    	"log"
    	"math/big"
    	"net"
    	"os"
    	"strings"
    	"time"
    )
    
    var (
    	host       = flag.String("host", "", "Comma-separated hostnames and IPs to generate a certificate for")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:22:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DefaultDaemonContext.java

                encoder.writeSmallInt(context.javaVersion.asInt());
                encoder.writeString(context.daemonRegistryDir.getPath());
                encoder.writeBoolean(context.pid != null);
                if (context.pid != null) {
                    encoder.writeLong(context.pid);
                }
                encoder.writeBoolean(context.idleTimeout != null);
                if (context.idleTimeout != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/internal/poll/fd_io_plan9.go

    // The undergoing I/O system call can either complete or be
    // interrupted by a note.
    type asyncIO struct {
    	res chan result
    
    	// mu guards the pid field.
    	mu sync.Mutex
    
    	// pid holds the process id of
    	// the process running the IO operation.
    	pid int
    }
    
    // result is the return value of a Read or Write operation.
    type result struct {
    	n   int
    	err error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. pkg/util/oom/oom_linux_test.go

    */
    
    package oom
    
    import (
    	"os"
    
    	"github.com/opencontainers/runc/libcontainer/cgroups"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    )
    
    // Converts a sequence of PID lists into a PID lister.
    // The PID lister returns pidListSequence[i] on the ith call. If i >= length of pidListSequence
    // then return the last element of pidListSequence (the sequence is considered to have) stabilized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/fix/import_test.go

    		In: `package main
    
    import (
    	"asn1"
    	"crypto"
    	"crypto/rsa"
    	_ "crypto/sha1"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"time"
    )
    
    var x = 1
    `,
    		Out: `package main
    
    import (
    	"crypto"
    	"crypto/rsa"
    	_ "crypto/sha1"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"time"
    )
    
    var x = 1
    `,
    	},
    	{
    		Name: "import.15",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 5K bytes
    - Viewed (0)
  8. src/sync/pool.go

    	l := p.local                              // load-consume
    	if uintptr(pid) < s {
    		return indexLocal(l, pid), pid
    	}
    	return p.pinSlow()
    }
    
    func (p *Pool) pinSlow() (*poolLocal, int) {
    	// Retry under the mutex.
    	// Can not lock the mutex while pinned.
    	runtime_procUnpin()
    	allPoolsMu.Lock()
    	defer allPoolsMu.Unlock()
    	pid := runtime_procPin()
    	// poolCleanup won't be called while we are pinned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java

        private final boolean largeFile;
        private int pid;
        private long byteOffset;
        private long lengthInBytes;
    
    
        /**
         * @param largeFile
         * 
         */
        public LockingAndXRange ( boolean largeFile ) {
            this.largeFile = largeFile;
        }
    
    
        /**
         * 
         * @return pid
         */
        public int getPid () {
            return this.pid;
        }
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  10. docs/zh/docs/advanced/openapi-callbacks.md

    ## 存档回调
    
    实际的回调代码高度依赖于您自己的 API 应用。
    
    并且可能每个应用都各不相同。
    
    回调代码可能只有一两行,比如:
    
    ```Python
    callback_url = "https://example.com/api/v1/invoices/events/"
    requests.post(callback_url, json={"description": "Invoice paid", "paid": True})
    ```
    
    但回调最重要的部分可能是,根据 API 要发送给回调请求体的数据等内容,确保您的 API 用户(外部开发者)正确地实现*外部 API*。
    
    因此,我们下一步要做的就是添加代码,为从 API 接收回调的*外部 API*存档。
    
    这部分文档在 `/docs` 下的 Swagger API 文档中显示,并且会告诉外部开发者如何构建*外部 API*。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 22:46:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top