Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 368 (0.04 sec)

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

    	SYS_LISTEN                  = 363
    	SYS_ACCEPT4                 = 364
    	SYS_GETSOCKOPT              = 365
    	SYS_SETSOCKOPT              = 366
    	SYS_GETSOCKNAME             = 367
    	SYS_GETPEERNAME             = 368
    	SYS_SENDTO                  = 369
    	SYS_SENDMSG                 = 370
    	SYS_RECVFROM                = 371
    	SYS_RECVMSG                 = 372
    	SYS_SHUTDOWN                = 373
    	SYS_MLOCK2                  = 374
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_PERF_EVENT_OPEN              = 364
    	SYS_RECVMMSG                     = 365
    	SYS_ACCEPT4                      = 366
    	SYS_FANOTIFY_INIT                = 367
    	SYS_FANOTIFY_MARK                = 368
    	SYS_PRLIMIT64                    = 369
    	SYS_NAME_TO_HANDLE_AT            = 370
    	SYS_OPEN_BY_HANDLE_AT            = 371
    	SYS_CLOCK_ADJTIME                = 372
    	SYS_SYNCFS                       = 373
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. .teamcity/performance-test-durations.json

      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.run clean phthalic:assembleDebug",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 368
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.run help",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 328
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_ACCEPT4                      = 364
    	SYS_GETSOCKOPT                   = 365
    	SYS_SETSOCKOPT                   = 366
    	SYS_GETSOCKNAME                  = 367
    	SYS_GETPEERNAME                  = 368
    	SYS_SENDTO                       = 369
    	SYS_SENDMSG                      = 370
    	SYS_RECVFROM                     = 371
    	SYS_RECVMSG                      = 372
    	SYS_SHUTDOWN                     = 373
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/testdata/issue59563/repro.go

    	} else if x == 363 {
    		x += 363
    	} else if x == 364 {
    		x += 364
    	} else if x == 365 {
    		x += 365
    	} else if x == 366 {
    		x += 366
    	} else if x == 367 {
    		x += 367
    	} else if x == 368 {
    		x += 368
    	} else if x == 369 {
    		x += 369
    	} else if x == 370 {
    		x += 370
    	} else if x == 371 {
    		x += 371
    	} else if x == 372 {
    		x += 372
    	} else if x == 373 {
    		x += 373
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1alpha1/generated.pb.go

    }
    
    func init() {
    	proto.RegisterFile("k8s.io/api/authentication/v1alpha1/generated.proto", fileDescriptor_f003acd72d3d5efb)
    }
    
    var fileDescriptor_f003acd72d3d5efb = []byte{
    	// 368 bytes of a gzipped FileDescriptorProto
    	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x41, 0x4f, 0xe2, 0x40,
    	0x14, 0xc7, 0x3b, 0x7b, 0x20, 0xa4, 0x9b, 0x6c, 0x76, 0x7b, 0x59, 0xc2, 0x61, 0x30, 0x3d, 0x18,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/bigger-applications.md

    So we put them in their own `dependencies` module (`app/dependencies.py`).
    
    We will now use a simple dependency to read a custom `X-Token` header:
    
    === "Python 3.9+"
    
        ```Python hl_lines="3  6-8" title="app/dependencies.py"
        {!> ../../../docs_src/bigger_applications/app_an_py39/dependencies.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="1  5-7" title="app/dependencies.py"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/bigger-applications.md

    Wir werden nun eine einfache Abhängigkeit verwenden, um einen benutzerdefinierten `X-Token`-Header zu lesen:
    
    === "Python 3.9+"
    
        ```Python hl_lines="3  6-8" title="app/dependencies.py"
        {!> ../../../docs_src/bigger_applications/app_an_py39/dependencies.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="1  5-7" title="app/dependencies.py"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	haNGIndex         ID = 362
    	hawIndex          ID = 363
    	hawUSIndex        ID = 364
    	heIndex           ID = 365
    	heILIndex         ID = 366
    	hiIndex           ID = 367
    	hiINIndex         ID = 368
    	hrIndex           ID = 369
    	hrBAIndex         ID = 370
    	hrHRIndex         ID = 371
    	hsbIndex          ID = 372
    	hsbDEIndex        ID = 373
    	huIndex           ID = 374
    	huHUIndex         ID = 375
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  10. test/codegen/memcombine.go

    	return uint64(s[idx<<3])<<56 | uint64(s[(idx<<3)+1])<<48 | uint64(s[(idx<<3)+2])<<40 | uint64(s[(idx<<3)+3])<<32 | uint64(s[(idx<<3)+4])<<24 | uint64(s[(idx<<3)+5])<<16 | uint64(s[(idx<<3)+6])<<8 | uint64(s[(idx<<3)+7])
    }
    
    // Some tougher cases for the memcombine pass.
    
    func reassoc_load_uint32(b []byte) uint32 {
    	// amd64:`MOVL\s\([A-Z]+\)`,-`MOV[BW]`,-`OR`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top