Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for fsbase (0.51 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/UniquePathKeyFileStoreTest.groovy

        def setup() {
            uniquePathKeyFileStore = new UniquePathKeyFileStore(TestUtil.checksumService, temporaryFolder.createDir("fsbase"))
        }
    
        def "add executes action if file does not exist"() {
            def file = temporaryFolder.file("fsbase/a/a");
    
            when:
            def fileInStore = uniquePathKeyFileStore.add("a/a", action)
    
            then:
            fileInStore.file == file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/DefaultPathKeyFileStoreTest.groovy

                new File(f, "b").text = "def"
            }
    
            then:
            def storedA = store.get("a")
            storedA.file == fsBase.file("a")
            fsBase.file("a").assertHasDescendants("a")
    
            def storedB = store.get("b")
            storedB.file == fsBase.file("b")
            fsBase.file("b").assertHasDescendants("b")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 20 09:57:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/PathNormalisingKeyFileStoreTest.groovy

            then:
            fsBase.file("_.zip").text == "abc"
            fsBase.file("__").text == "def"
        }
    
        def "can add to filestore"() {
            when:
            store.add("!.zip", { File file -> file.text = "abc" } as Action<File>)
            store.add("  ", { File file -> file.text = "def" } as Action<File>)
            then:
            fsBase.file("_.zip").text == "abc"
            fsBase.file("__").text == "def"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go

    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
    	return ptracePtr(PT_GETFSBASE, pid, unsafe.Pointer(fsbase), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go

    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
    	return ptracePtr(PT_GETFSBASE, pid, unsafe.Pointer(fsbase), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/ITBase.java

    import org.apache.logging.log4j.Logger;
    
    import io.restassured.mapper.ObjectMapperType;
    import io.restassured.specification.RequestSpecification;
    
    public class ITBase {
        private static final Logger logger = LogManager.getLogger(ITBase.class);
        public static final String DEFAULT_FESS_URL = "http://localhost:8080";
        public static final String DEFAULT_SEARCH_ENGINE_URL = "http://localhost:9200";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_s390x.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare(SB),NOSPLIT|NOFRAME,$0-56
    	MOVD	a_base+0(FP), R3
    	MOVD	a_len+8(FP), R4
    	MOVD	b_base+24(FP), R5
    	MOVD	b_len+32(FP), R6
    	LA	ret+48(FP), R7
    	BR	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT|NOFRAME,$0-40
    	MOVD	a_base+0(FP), R3
    	MOVD	a_len+8(FP), R4
    	MOVD	b_base+16(FP), R5
    	MOVD	b_len+24(FP), R6
    	LA	ret+32(FP), R7
    	BR	cmpbody<>(SB)
    
    // input:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_wasm.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare(SB), NOSPLIT, $0-56
    	Get SP
    	I64Load a_base+0(FP)
    	I64Load a_len+8(FP)
    	I64Load b_base+24(FP)
    	I64Load b_len+32(FP)
    	Call cmpbody<>(SB)
    	I64Store ret+48(FP)
    	RET
    
    TEXT runtime·cmpstring(SB), NOSPLIT, $0-40
    	Get SP
    	I64Load a_base+0(FP)
    	I64Load a_len+8(FP)
    	I64Load b_base+16(FP)
    	I64Load b_len+24(FP)
    	Call cmpbody<>(SB)
    	I64Store ret+32(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 11 04:00:35 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. src/internal/bytealg/compare_mips64x.s

    //go:build mips64 || mips64le
    
    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare(SB),NOSPLIT,$0-56
    	MOVV	a_base+0(FP), R3
    	MOVV	b_base+24(FP), R4
    	MOVV	a_len+8(FP), R1
    	MOVV	b_len+32(FP), R2
    	MOVV	$ret+48(FP), R9
    	JMP	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT,$0-40
    	MOVV	a_base+0(FP), R3
    	MOVV	b_base+16(FP), R4
    	MOVV	a_len+8(FP), R1
    	MOVV	b_len+24(FP), R2
    	MOVV	$ret+32(FP), R9
    	JMP	cmpbody<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. src/internal/bytealg/compare_arm.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	a_base+0(FP), R2
    	MOVW	a_len+4(FP), R0
    	MOVW	b_base+12(FP), R3
    	MOVW	b_len+16(FP), R1
    	ADD	$28, R13, R7
    	B	cmpbody<>(SB)
    
    TEXT runtime·cmpstring(SB),NOSPLIT|NOFRAME,$0-20
    	MOVW	a_base+0(FP), R2
    	MOVW	a_len+4(FP), R0
    	MOVW	b_base+8(FP), R3
    	MOVW	b_len+12(FP), R1
    	ADD	$20, R13, R7
    	B	cmpbody<>(SB)
    
    // On entry:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 16:09:38 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top