Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for _nprivates (0.26 sec)

  1. src/runtime/rt0_plan9_amd64.s

    #include "textflag.h"
    
    TEXT _rt0_amd64_plan9(SB),NOSPLIT,$24
    	MOVQ	AX, _tos(SB)
    	LEAQ	16(SP), AX
    	MOVQ	AX, _privates(SB)
    	MOVL	$1, _nprivates(SB)
    	MOVL	inargc-8(FP), DI
    	LEAQ	inargv+0(FP), SI
    	MOVQ	$runtime·rt0_go(SB), AX
    	JMP	AX
    
    GLOBL _tos(SB), NOPTR, $8
    GLOBL _privates(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 18:11:17 UTC 2015
    - 481 bytes
    - Viewed (0)
  2. src/runtime/rt0_plan9_386.s

    TEXT _rt0_386_plan9(SB),NOSPLIT,$12
    	MOVL	AX, _tos(SB)
    	LEAL	8(SP), AX
    	MOVL	AX, _privates(SB)
    	MOVL	$1, _nprivates(SB)
    	CALL	runtime·asminit(SB)
    	MOVL	inargc-4(FP), AX
    	MOVL	AX, 0(SP)
    	LEAL	inargv+0(FP), AX
    	MOVL	AX, 4(SP)
    	JMP	runtime·rt0_go(SB)
    
    GLOBL _tos(SB), NOPTR, $4
    GLOBL _privates(SB), NOPTR, $4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 523 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[private_getter_must_not_be_annotated]]
    == Annotations on private getters
    
    This error indicates that you have annotated a _private_ getter with an input or output annotation.
    Gradle doesn't consider private getters as inputs for up-to-date checking, which means that your annotations effectively are ignored.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    ----
    
    The _public_ constructor of `HttpClientWrapper` uses `HttpClient` as a parameter, so it is exposed to consumers and therefore belongs to the API. Note that `HttpGet` and `HttpEntity` are used in the signature of a _private_ method, and so they don't count towards making HttpClient an API dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

        description = "Runs this project as a JVM application."
    }
    ----
    =====
    ====
    
    [[sec:hidden_tasks]]
    == Private and hidden tasks
    
    Gradle doesn't support marking a task as _private_.
    
    However, tasks will only show up when running `:tasks` if `task.group` is set or no other task depends on it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	switch ctxt.Headtype {
    	case objabi.Hplan9:
    		plan9privates = ctxt.Lookup("_privates")
    	}
    
    	for i := range avxOptab {
    		c := avxOptab[i].as
    		if opindex[c&obj.AMask] != nil {
    			ctxt.Diag("phase error in avxOptab: %d (%v)", i, c)
    		}
    		opindex[c&obj.AMask] = &avxOptab[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-62866`](https://youtrack.jetbrains.com/issue/KT-62866) K2: Change qualifier resolution behavior when companion object is preferred against static scope
    - [`KT-55446`](https://youtrack.jetbrains.com/issue/KT-55446) Change impact of _private-to-this_ visibility to resolution
    - [`KT-64255`](https://youtrack.jetbrains.com/issue/KT-64255) Forbid accessing internal setter from a derived class in another module
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top