Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for 368 (0.2 sec)

  1. .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)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    	SYS_KEVENT                         = 363
    	SYS_LCHOWN                         = 364
    	SYS_BSDTHREAD_REGISTER             = 366
    	SYS_WORKQ_OPEN                     = 367
    	SYS_WORKQ_KERNRETURN               = 368
    	SYS_KEVENT64                       = 369
    	SYS___OLD_SEMWAIT_SIGNAL           = 370
    	SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL  = 371
    	SYS_THREAD_SELFID                  = 372
    	SYS_LEDGER                         = 373
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            modPath(staticLibrary("build/libs/hello/static/hello").file).assertExists()
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/368")
        @RequiresInstalledToolChain(VISUALCPP)
        @Requires(UnitTestPreconditions.CanInstallExecutable)
        @ToBeFixedForConfigurationCache
        def "can configure output file for shared library on MSVC"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K 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. test/fixedbugs/issue60982.go

    		return 361
    	case 362:
    		return 362
    	case 363:
    		return 363
    	case 364:
    		return 364
    	case 365:
    		return 365
    	case 366:
    		return 366
    	case 367:
    		return 367
    	case 368:
    		return 368
    	case 369:
    		return 369
    	case 370:
    		return 370
    	case 371:
    		return 371
    	case 372:
    		return 372
    	case 373:
    		return 373
    	case 374:
    		return 374
    	case 375:
    		return 375
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 28 16:07:47 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_EXTATTR_SET_LINK     = 367 // { int|sys||extattr_set_link(const char *path, int attrnamespace, const char *attrname, const void *data, size_t nbytes); }
    	SYS_EXTATTR_GET_LINK     = 368 // { ssize_t|sys||extattr_get_link(const char *path, int attrnamespace, const char *attrname, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top