Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for okbuck (0.1 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        @Inject
        abstract FileSystemOperations getFileSystemOperations()
    
        void execute(RemoteProject remoteProject) {
            fileSystemOperations.delete {
                delete(new File(remoteProject.outputDirectory, ".okbuck"))
            }
        }
    }
    
    private void setMaxWorkers(File projectDirectory, int maxWorkers) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.workers.max=${maxWorkers}\n"
    
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. src/syscall/asm_linux_s390x.s

    	MOVD	$a0+8(FP), R3		// pointer to call arguments
    	MOVD	$0, R4
    	MOVD	$0, R5
    	MOVD	$0, R6
    	MOVD	$0, R7
    	SYSCALL
    	MOVD	$0xfffffffffffff001, R8
    	CMPUBLT	R2, R8, oksock
    	MOVD	$-1, n+56(FP)
    	NEG	R2, R2
    	MOVD	R2, err+64(FP)
    	BL	runtime·exitsyscall(SB)
    	RET
    oksock:
    	MOVD	R2, n+56(FP)
    	MOVD	$0, err+64(FP)
    	CALL	runtime·exitsyscall(SB)
    	RET
    
    // func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/syscall/asm_linux_386.s

    	LEAL	a0+4(FP), CX	// pointer to call arguments
    	MOVL	$0, DX
    	MOVL	$0, SI
    	MOVL	$0, DI
    	INVOKE_SYSCALL
    	CMPL	AX, $0xfffff001
    	JLS	oksock
    	MOVL	$-1, n+28(FP)
    	NEGL	AX
    	MOVL	AX, err+32(FP)
    	CALL	runtime·exitsyscall(SB)
    	RET
    oksock:
    	MOVL	AX, n+28(FP)
    	MOVL	$0, err+32(FP)
    	CALL	runtime·exitsyscall(SB)
    	RET
    
    // func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    can be easily selected, incorporated, and reused in a wide range of
    driver programs including command-line tools (such as vet), text editors and
    IDEs, build and test systems (such as go build, Bazel, or Buck), test
    frameworks, code review tools, code-base indexers (such as SourceGraph),
    documentation viewers (such as godoc), batch pipelines for large code
    bases, and so on.
    
    # Analyzer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top