Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,770 for happens (0.55 sec)

  1. src/cmd/cgo/internal/test/issue9400/asm_mips64x.s

    //go:build (mips64 || mips64le) && gc
    
    #include "textflag.h"
    
    #define SYNC	WORD $0xf
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADDV	$(1024*8), R29
    
    	// Ask signaller to setgid
    	MOVW	$1, R1
    	SYNC
    	MOVW	R1, ·Baton(SB)
    	SYNC
    
    	// Wait for setgid completion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 691 bytes
    - Viewed (0)
  2. src/runtime/internal/math/math.go

    func Add64(x, y, carry uint64) (sum, carryOut uint64) {
    	sum = x + y + carry
    	// The sum will overflow if both top bits are set (x & y) or if one of them
    	// is (x | y), and a carry from the lower place happened. If such a carry
    	// happens, the top bit will be 1 + 0 + 1 = 0 (&^ sum).
    	carryOut = ((x & y) | ((x | y) &^ sum)) >> 63
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    [[reserved_alias_name]]
    == Use of a reserved alias name
    
    This error indicates that you chose an alias which is a reserved name.
    Typically this happens if you choose an alias which starts with `versions`, `bundles`, or `plugins` or contains `extensions`, `convention`, `class`, as it may clash with generated accessors.
    
    To fix this problem, you must choose a different alias.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/OutputChangeListener.java

    @EventScope(Scope.Build.class)
    @ServiceScope(Scope.Gradle.class)
    public interface OutputChangeListener {
        /**
         * Invoked when some locations on disk have been changed or are about to be changed.
         * This happens for example just before and after the task actions are executed or the outputs are loaded from the cache.
         *
         * @param affectedOutputPaths The files which are affected by the change.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSet.java

     */
    public interface ArtifactSet {
        /**
         * Selects the artifacts of this set that meet the given criteria. Implementation should be eager where possible, so that selection happens immediately, but may be lazy.
         */
        ResolvedArtifactSet select(ArtifactVariantSelector variantSelector, ArtifactSelectionSpec spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue9400/asm_arm.s

    #include "textflag.h"
    
    TEXT cas<>(SB),NOSPLIT,$0
    	MOVW	$0xffff0fc0, R15 // R15 is PC
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Save link register
    	MOVW	R14, R4
    
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024 * 8), R13
    
    	// Ask signaller to setgid
    	MOVW	$·Baton(SB), R2
    storeloop:
    	MOVW	0(R2), R0
    	MOVW	$1, R1
    	BL	cas<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 758 bytes
    - Viewed (0)
  7. src/runtime/testdata/testwinlib/main.go

    // validate that it does not crash the program before another handler could take an action.
    // The idea here is to reproduce what happens when you attach a debugger to a running program.
    // It also simulate the behavior of the .Net debugger, which register its exception/continue handlers lazily.
    //
    //export Dummy
    func Dummy() int {
    	return 42
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 925 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue9400/asm_arm64.s

    //go:build gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Save link register
    	MOVD	R30, R9
    
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024 * 8), RSP
    
    	// Ask signaller to setgid
    	MOVD	$·Baton(SB), R0
    	MOVD	$1, R1
    storeloop:
    	LDAXRW	(R0), R2
    	STLXRW	R1, (R0), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 760 bytes
    - Viewed (0)
  9. hack/verify-api-groups.sh

    	fi
    done
    
    
    # check to make sure that client gen is getting
    # groups_without_codegen is the list of group we EXPECT to not have the client generated for
    # them.  This happens for types that aren't served from the API server
    groups_without_codegen=(
    	"abac"
    	"imagepolicy"
    	"admission"
    )
    client_gen_file="${KUBE_ROOT}/staging/src/k8s.io/code-generator/cmd/client-gen/main.go"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

                try {
                    return new WindowsAnsiPrintStream(new PrintStream(stream));
                } catch (Throwable ignore) {
                    // this happens when JNA is not in the path.. or
                    // this happens when the stdout is being redirected to a file.
                }
    
                // Use the ANSIOutputStream to strip out the ANSI escape sequences.
                return new AnsiOutputStream(stream);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top