Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for pkid (0.09 sec)

  1. src/syscall/exec_libc2.go

    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. src/syscall/exec_bsd.go

    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. tests/fuzz/pki_fuzzer.go

    	noOfExts, err := f.GetInt()
    	if err != nil {
    		return 0
    	}
    	noOfExtensions := noOfExts % 30
    	if noOfExtensions == 0 {
    		return 0
    	}
    	extensions := make([]pkix.Extension, 0)
    	for i := 0; i < noOfExtensions; i++ {
    		newExtension := pkix.Extension{}
    		err = f.GenerateStruct(&newExtension)
    		if err != nil {
    			return 0
    		}
    		extensions = append(extensions, newExtension)
    	}
    	_, _ = util.ExtractIDs(extensions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 14:00:25 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

    
    class ProcessFixture {
        final Long pid;
    
        ProcessFixture(Long pid) {
            this.pid = pid
        }
    
        /**
         * Forcefully kills this daemon.
         */
        void kill(boolean killTree) {
            println "Killing process with pid: $pid"
            if (pid == null) {
                throw new RuntimeException("Unable to force kill the process because provided pid is null!")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. security/pkg/server/ca/authenticate/cert_authenticator_test.go

    // limitations under the License.
    
    package authenticate
    
    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"reflect"
    	"testing"
    
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/peer"
    
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    type mockAuthInfo struct {
    	authType string
    }
    
    func (ai mockAuthInfo) AuthType() string {
    	return ai.authType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 01:20:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/photonpersistentdiskvolumesource.go

    // with apply.
    type PhotonPersistentDiskVolumeSourceApplyConfiguration struct {
    	PdID   *string `json:"pdID,omitempty"`
    	FSType *string `json:"fsType,omitempty"`
    }
    
    // PhotonPersistentDiskVolumeSourceApplyConfiguration constructs an declarative configuration of the PhotonPersistentDiskVolumeSource type for use with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. src/crypto/x509/cert_pool.go

    	// when picking possible candidates the list is built in the order
    	// of match plausibility as to save cycles in buildChains:
    	//   AKID and SKID match
    	//   AKID present, SKID missing / AKID missing, SKID present
    	//   AKID and SKID don't match
    	var matchingKeyID, oneKeyID, mismatchKeyID []potentialParent
    	for _, c := range s.byName[string(cert.RawIssuer)] {
    		candidate, constraint, err := s.cert(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/crypto/x509/boring_test.go

    //go:build boringcrypto
    
    package x509
    
    import (
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/internal/boring/fipstls"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/x509/pkix"
    	"fmt"
    	"math/big"
    	"strings"
    	"testing"
    	"time"
    )
    
    const (
    	boringCertCA = iota
    	boringCertLeaf
    	boringCertFIPSOK = 0x80
    )
    
    func boringRSAKey(t *testing.T, size int) *rsa.PrivateKey {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. src/internal/syscall/unix/tcsetpgrp_bsd.go

    )
    
    //go:linkname ioctlPtr syscall.ioctlPtr
    func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error)
    
    // Note that pgid should really be pid_t, however _C_int (aka int32) is
    // generally equivalent.
    
    func Tcsetpgrp(fd int, pgid int32) (err error) {
    	return ioctlPtr(fd, syscall.TIOCSPGRP, unsafe.Pointer(&pgid))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 588 bytes
    - Viewed (0)
  10. plugin/pkg/admission/certificates/subjectrestriction/admission_test.go

    limitations under the License.
    */
    
    package subjectrestriction
    
    import (
    	"context"
    	"crypto/ed25519"
    	"crypto/rand"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/pem"
    	"testing"
    
    	certificatesv1beta1 "k8s.io/api/certificates/v1beta1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 27 15:50:14 UTC 2020
    - 5K bytes
    - Viewed (0)
Back to top