Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 141 for getlogin (0.56 sec)

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

    	SYS_GETGID                 = 47  // { gid_t getgid(void); }
    	SYS_GETLOGIN               = 49  // { int getlogin(char *namebuf, size_t namelen); }
    	SYS_SETLOGIN               = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                   = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK            = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_GETGID                   = 47  // { gid_t getgid(void); }
    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_GETGID                   = 47  // { gid_t getgid(void); }
    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_GETGID                   = 47  // { gid_t getgid(void); }
    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_GETGID                   = 47  // { gid_t getgid(void); }
    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_GETGID                   = 47  // { gid_t getgid(void); }
    	SYS_GETLOGIN                 = 49  // { int getlogin(char *namebuf, u_int namelen); }
    	SYS_SETLOGIN                 = 50  // { int setlogin(char *namebuf); }
    	SYS_ACCT                     = 51  // { int acct(char *path); }
    	SYS_SIGALTSTACK              = 53  // { int sigaltstack(stack_t *ss, stack_t *oss); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConventionExtensions.kt

     * @throws [IllegalStateException] when there is no such object contained in this convention, or when there are multiple such objects
     * @see [Convention.getPlugin]
     */
    @Deprecated("The concept of conventions is deprecated. Use extensions instead.")
    inline fun <reified T : Any> Convention.getPlugin(): T =
        getPlugin(T::class)
    
    
    /**
     * Locates the plugin convention object with the given type.
     *
     * @param conventionType the convention plugin type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/DefaultConventionTest.groovy

            convention.extensionsAsDynamicObject.methUnknown()
        }
    
        @Test void testCanLocateConventionObjectByType() {
            assertSame(convention1, convention.getPlugin(TestPluginConvention1))
            assertSame(convention2, convention.getPlugin(TestPluginConvention2))
            assertSame(convention1, convention.findPlugin(TestPluginConvention1))
            assertSame(convention2, convention.findPlugin(TestPluginConvention2))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/language/java/DependencyScope.groovy

    package org.gradle.language.java;
    
    enum DependencyScope {
        COMPONENT {
            @Override
            public String getBegin() {
                'dependencies {'
            }
    
            @Override
            public String getEnd() {
                '}'
            }
        },
        API {
            @Override
            public String getBegin() {
                'api { dependencies {'
            }
    
            @Override
            public String getEnd() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/DefaultKotlinScript.kt

    ) : KotlinScript, GradleScript {
    
        internal
        interface Host {
            fun getLogger(): Logger
            fun getLogging(): LoggingManager
            fun getFileOperations(): FileOperations
            fun getProcessOperations(): ProcessOperations
        }
    
        override val logging: LoggingManager by unsafeLazy(host::getLogging)
    
        override val logger: Logger by unsafeLazy(host::getLogger)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 22:41:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top