Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 266 for 4002 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go

    package unix
    
    const (
    	SYS_SYSCALL                      = 4000
    	SYS_EXIT                         = 4001
    	SYS_FORK                         = 4002
    	SYS_READ                         = 4003
    	SYS_WRITE                        = 4004
    	SYS_OPEN                         = 4005
    	SYS_CLOSE                        = 4006
    	SYS_WAITPID                      = 4007
    	SYS_CREAT                        = 4008
    	SYS_LINK                         = 4009
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_linux_mips.go

    package syscall
    
    const (
    	SYS_SYSCALL                = 4000
    	SYS_EXIT                   = 4001
    	SYS_FORK                   = 4002
    	SYS_READ                   = 4003
    	SYS_WRITE                  = 4004
    	SYS_OPEN                   = 4005
    	SYS_CLOSE                  = 4006
    	SYS_WAITPID                = 4007
    	SYS_CREAT                  = 4008
    	SYS_LINK                   = 4009
    	SYS_UNLINK                 = 4010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_linux_mipsle.go

    package syscall
    
    const (
    	SYS_SYSCALL                = 4000
    	SYS_EXIT                   = 4001
    	SYS_FORK                   = 4002
    	SYS_READ                   = 4003
    	SYS_WRITE                  = 4004
    	SYS_OPEN                   = 4005
    	SYS_CLOSE                  = 4006
    	SYS_WAITPID                = 4007
    	SYS_CREAT                  = 4008
    	SYS_LINK                   = 4009
    	SYS_UNLINK                 = 4010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go

    package unix
    
    const (
    	SYS_SYSCALL                      = 4000
    	SYS_EXIT                         = 4001
    	SYS_FORK                         = 4002
    	SYS_READ                         = 4003
    	SYS_WRITE                        = 4004
    	SYS_OPEN                         = 4005
    	SYS_CLOSE                        = 4006
    	SYS_WAITPID                      = 4007
    	SYS_CREAT                        = 4008
    	SYS_LINK                         = 4009
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    			},
    			400,
    			2,
    			[]eventCheck{
    				requestBodyIs(1, string(simpleCPrimeJSON)),
    				responseBodyMatches(1, `"Status".*"status":"Failure".*"code":400}`),
    				expectedStages(auditinternal.StageRequestReceived, auditinternal.StageResponseComplete),
    			},
    		},
    		{
    			"patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  6. internal/s3select/csv/testdata/testdata.zip

    BK35,Stuyvesant Heights,4003,2092,393,3,Brooklyn,039300,3039300,E,BK78,Bushwick South,4002^3389279,2,2014-03-23 10:09:25,2014-03-23 10:18:24,N,1,-73.925209045410156,40.685371398925781,-73.959541320800781,40.686485290527344,1,2.12,9,0,0.5,0,0,,,9.5,2,1,225,49,green,0.00,0.0,0.0,42,27,7.38,1275,383,3,Brooklyn,038300,3038300,I,BK35,Stuyvesant Heights,4003,128,231,3,Brooklyn,023100,3023100,I,BK69,Clinton Hill,4004^3389280,2,2014-03-28 14:11:09,2014-03-28 14:23:56,N,1,-73.867164611816406,40.750392913...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 111.6K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    CCM_FEATURE_GATES:  $(yaml-quote "${CCM_FEATURE_GATES:-}")
    KUBE_SCHEDULER_RUNASUSER: 2001
    KUBE_SCHEDULER_RUNASGROUP: 2001
    KUBE_ADDON_MANAGER_RUNASUSER: 2002
    KUBE_ADDON_MANAGER_RUNASGROUP: 2002
    KUBE_CONTROLLER_MANAGER_RUNASUSER: 2003
    KUBE_CONTROLLER_MANAGER_RUNASGROUP: 2003
    KUBE_API_SERVER_RUNASUSER: 2004
    KUBE_API_SERVER_RUNASGROUP: 2004
    KUBE_PKI_READERS_GROUP: 2005
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. architecture/standards/0002-avoid-using-java-serialization.md

    # ADR-0002 - Avoid using Java serialization
    
    ## Date
    
    2012-12-01
    
    ## Context
    
    In Gradle we often need to serialize in-memory objects for caching, or to transmit them across process barriers, etc.
    Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks:
    
    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. releasenotes/notes/44002.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 44002
    releaseNotes:
      - |
        **Fixed** `istioctl experimental revision describe` warning gateway is not enabled when gateway exists.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 22:51:54 UTC 2023
    - 306 bytes
    - Viewed (0)
  10. releasenotes/notes/40032.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 40027
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 07:19:58 UTC 2022
    - 189 bytes
    - Viewed (0)
Back to top