Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for make (0.07 sec)

  1. src/runtime/asm_mipsx.s

    	BNE	g, R1, 2(PC)
    	JMP	runtime·badmcall(SB)
    	MOVW	fn+0(FP), REGCTXT	// context
    	MOVW	0(REGCTXT), R4	// code pointer
    	MOVW	(g_sched+gobuf_sp)(g), R29	// sp = m->g0->sched.sp
    	ADDU	$-8, R29	// make room for 1 arg and fake LR
    	MOVW	R1, 4(R29)
    	MOVW	R0, 0(R29)
    	JAL	(R4)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/runtime/asm_loong64.s

    	RET
    
    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVV	buf+0(FP), R4
    	MOVV	gobuf_g(R4), R5
    	MOVV	0(R5), R0	// make sure g != nil
    	JMP	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOVV	R5, g
    	JAL	runtime·save_g(SB)
    
    	MOVV	gobuf_sp(R4), R3
    	MOVV	gobuf_lr(R4), R1
    	MOVV	gobuf_ret(R4), R19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    Generally, build services are intended to be used by tasks, and as they usually represent some potentially expensive state to create, you should avoid using them at configuration time. However, sometimes, using the service at configuration time can make sense.
    This is possible; call `get()` on the provider.
    
    == Using a build service with the Worker API
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/runtime/asm_arm64.s

    TEXT runtime·rt0_go(SB),NOSPLIT|TOPFRAME,$0
    	// SP = stack; R0 = argc; R1 = argv
    
    	SUB	$32, RSP
    	MOVW	R0, 8(RSP) // argc
    	MOVD	R1, 16(RSP) // argv
    
    #ifdef TLS_darwin
    	// Initialize TLS.
    	MOVD	ZR, g // clear g, make sure it's not junk.
    	SUB	$32, RSP
    	MRS_TPIDR_R0
    	AND	$~7, R0
    	MOVD	R0, 16(RSP)             // arg2: TLS base
    	MOVD	$runtime·tls_g(SB), R2
    	MOVD	R2, 8(RSP)              // arg1: &tlsg
    	BL	·tlsinit(SB)
    	ADD	$32, RSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. hack/golangci.yaml

          linters:
            - gocritic
    
        # The Kubernetes naming convention for conversion functions uses underscores
        # and intentionally deviates from normal Go conventions to make those function
        # names more readable. Same for SetDefaults_*.
        #
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507028627
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. helm-releases/minio-5.2.0.tgz

    y|consoleAdmin|diagnostics] ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.html#access-management ## NOTE: this will fail if LDAP is enabled in your MinIO deployment ## make sure to disable this if you are using LDAP. - accessKey: console secretKey: console123 policy: consoleAdmin # Or you can refer to specific secret #- accessKey: externalSecret # existingSecret: my-secret # existingSecretKey: password # policy: readonly...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    Gradle uses the declared return type of the getter method to determine the service to make available. The name of the property is not significant and can be whatever you like.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Modifications to your build that would impact the resolved set of dependencies will cause it to fail.
    This makes sure that changes, either in published dependencies or build definitions, do not alter resolution without adapting the lock state.
    
    [NOTE]
    ====
    Dependency locking makes sense only with <<dynamic_versions.adoc#sub:declaring_dependency_with_dynamic_version,dynamic versions>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.yaml

        code: IST0123
        level: Warning
        description: "A namespace has more than one type of injection labels"
        template: "The namespace has more than one type of injection labels %v, which may lead to undefined behavior. Make sure only one injection label exists."
        args:
          - name: labels
            type: "[]string"
    
      - name: "InvalidAnnotation"
        code: IST0125
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    ====
    
    If this method is called and that a project or plugin declares rules, a warning will be issued.
    You can make this a failure instead by using this alternative:
    
    .Enforcing rules declared in settings
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top