Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for nOt (0.11 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

            assertThat(matcher, not(matchesFile()));
            assertThat(matcher, not(matchesFile("a")));
            assertThat(matcher, not(matchesFile("a", "b")));
            assertThat(matcher, not(matchesFile("a", "b", "c", "d")));
            assertThat(matcher, not(matchesFile("a", "c", "b", "c")));
            assertThat(matcher, not(matchesFile("d", "a", "b")));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. test/escape_map.go

    func map0() {
    	m := make(map[*int]*int) // ERROR "make\(map\[\*int\]\*int\) does not escape"
    	// BAD: i should not escape
    	i := 0 // ERROR "moved to heap: i"
    	// BAD: j should not escape
    	j := 0 // ERROR "moved to heap: j"
    	m[&i] = &j
    	_ = m
    }
    
    func map1() *int {
    	m := make(map[*int]*int) // ERROR "make\(map\[\*int\]\*int\) does not escape"
    	// BAD: i should not escape
    	i := 0 // ERROR "moved to heap: i"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callutimes(_p0 uintptr, times uintptr) (r1 uintptr, e1 Errno) {
    	r1, _, e1 = syscall6(uintptr(unsafe.Pointer(&libc_utimes)), 2, _p0, times, 0, 0, 0, 0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callutimensat(dirfd int, _p0 uintptr, times uintptr, flag int) (r1 uintptr, e1 Errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go

    // go run mksyscall.go -tags linux,arm64 syscall_linux.go syscall_linux_arm64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build linux && arm64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Method <org.gradle.api.tasks.SourceSet.getAnnotationProcessorPath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SourceSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelWriter.java

         * created automatically.
         *
         * @param output The file to serialize the model to, must not be {@code null}.
         * @param options The options to use for serialization, may be {@code null} to use the default values.
         * @param model The model to serialize, must not be {@code null}.
         * @throws IOException If the model could not be serialized.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         *
         * @param projectFile The POM file to build the project from, must not be {@code null}.
         * @param request The project building request that holds further parameters, must not be {@code null}.
         * @return The result of the project building, never {@code null}.
         * @throws ProjectBuildingException If the project descriptor could not be successfully built.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    func callgetgid() (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.getgid())
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func callgetuid() (r1 uintptr, e1 Errno) {
    	r1 = uintptr(C.getuid())
    	e1 = syscall.GetErrno()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  9. test/closure3.dir/main.go

    			return x + 2
    		}
    		y, sink = func(x int) int { // ERROR "can inline main.func9" "func literal does not escape"
    			return x + 1
    		}, 42
    		if y(40) != 41 {
    			ppanic("y(40) != 41")
    		}
    	}
    
    	{
    		func() { // ERROR "func literal does not escape"
    			y := func(x int) int { // ERROR "can inline main.func10.1" "func literal does not escape"
    				return x + 2
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:29 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue13480.go

    	var m M
    	var f F
    
    	_ = s == S(nil) // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	_ = S(nil) == s // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	switch s {
    	case S(nil): // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	}
    
    	_ = m == M(nil) // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 1.2K bytes
    - Viewed (0)
Back to top