Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 217 for clobbered (0.13 sec)

  1. cluster/addons/dns/kube-dns/README.md

    ```
    
    Do not use `kubectl edit` to modify kube-dns Deployment object if it is
    controlled by [Addon Manager](../../addon-manager/). Otherwise the modifications
    will be clobbered, in addition the replicas count for kube-dns Deployment will
    be reset to 1. See [Cluster add-ons README](../../README.md) and
    [#36411](https://github.com/kubernetes/kubernetes/issues/36411) for reference.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t01/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    /**
     * A test which demonstrates maven's recursive inheritance where
     * we are testing to make sure that elements stated in a model are
     * not clobbered by the same elements elsewhere in the lineage.
     *
     */
    @Deprecated
    class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
        // ----------------------------------------------------------------------
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/internal/bytealg/compare_arm.s

    // R0 is the length of a
    // R1 is the length of b
    // R2 points to the start of a
    // R3 points to the start of b
    // R7 points to return value (-1/0/1 will be written here)
    //
    // On exit:
    // R4, R5, R6 and R8 are clobbered
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMP	R2, R3
    	BEQ	samebytes
    	CMP 	R0, R1
    	MOVW 	R0, R6
    	MOVW.LT	R1, R6		// R6 is min(R0, R1)
    
    	CMP	$0, R6
    	BEQ	samebytes
    	CMP	$4, R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 16:09:38 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  4. src/internal/bytealg/equal_arm.s

    	B	memeqbody<>(SB)
    eq:
    	MOVW	$1, R0
    	MOVB	R0, ret+8(FP)
    	RET
    
    // Input:
    // R0: data of a
    // R1: length
    // R2: data of b
    // R7: points to return value
    //
    // On exit:
    // R4, R5 and R6 are clobbered
    TEXT memeqbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMP	$1, R1
    	B.EQ	one		// 1-byte special case for better performance
    
    	CMP	$4, R1
    	ADD	R0, R1		// R1 is the end of the range to compare
    	B.LT	byte_loop	// length < 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 00:56:36 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  5. test/fixedbugs/bug19403.go

    // run
    
    // Copyright 2017 The Go Authors.  All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test for golang.org/issue/19403.
    // F15 should not be clobbered by float-to-int conversion on ARM.
    // This test requires enough locals that can be put in registers that the compiler can choose to use F15.
    package main
    
    var count float32 = 16
    var i0 int
    var i1 int
    var i2 int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 21:39:00 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/crash.go

    func (p P) String() string {
    	// Try to free the "YYY" string header when the "XXX"
    	// panic is stringified.
    	runtime.GC()
    	runtime.GC()
    	runtime.GC()
    	return string(p)
    }
    
    // Test that panic message is not clobbered.
    // See issue 30150.
    func DoublePanic() {
    	defer func() {
    		panic(P("YYY"))
    	}()
    	panic(P("XXX"))
    }
    
    // Test that panic while panicking discards error message
    // See issue 52257
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // This test requires a binutils with power10 and ELFv2 1.5 support. This is earliest verified version.
    .if .gasversion. >= 23500
    
    // A function which does not guarantee R2 is preserved.
    // R2 is clobbered here to ensure the stubs preserve it.
    	.globl	notoc_nor2_func
    	.type	notoc_nor2_func, @function
    notoc_nor2_func:
    	.localentry notoc_nor2_func,1
    	li	2,0
    	blr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_arm64.s

    // On entry:
    // R0 points to the start of a
    // R1 is the length of a
    // R2 points to the start of b
    // R3 is the length of b
    //
    // On exit:
    // R0 is the result
    // R4, R5, R6, R8, R9 and R10 are clobbered
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMP	R0, R2
    	BEQ	samebytes         // same starting pointers; compare lengths
    	CMP	R1, R3
    	CSEL	LT, R3, R1, R6    // R6 is min(R1, R3)
    
    	CBZ	R6, samebytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/TestWithCompiler.kt

    internal
    inline fun safeMockProgramHost(stubbing: KStubbing<ExecutableProgram.Host>.(ExecutableProgram.Host) -> Unit = {}) =
        mock<ExecutableProgram.Host> {
            // Add a custom exception handler so that they don't get clobbered.
            on { handleScriptException(any(), any(), any()) } doAnswer { invocation ->
                val throwable: Throwable = invocation.getArgument(0)
                val scriptClass: Class<*> = invocation.getArgument(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_linux_ppc64x.S

    	std	%r2, 24(%r1)
    
    	FOR_EACH_GPR std
    	FOR_EACH_FPR stfd
    	FOR_EACH_VR stvx
    
    	// Set up Go ABI constant registers
    	li	%r0, 0
    
    	// Restore g pointer (r30 in Go ABI, which may have been clobbered by C)
    	mr	%r30, %r4
    
    	// Call fn
    	mr	%r12, %r3
    	mtctr	%r3
    	bctrl
    
    	FOR_EACH_GPR ld
    	FOR_EACH_FPR lfd
    	FOR_EACH_VR lvx
    
    	ld	%r2, 24(%r1)
    	addi	%r1, %r1, FRAME_SIZE
    	ld	%r0, 16(%r1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top