Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 343 for AdTest (0.12 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractDefaultTestOrderingIntegrationTest.groovy

                    @Test public void test() {}
                }
            """.stripIndent()
        }
    
        def "test classes are scanned and run in deterministic order by default"() {
            addEmptyTestClass("AdTest")
            addEmptyTestClass("AATest")
            addEmptyTestClass("AyTest")
            addEmptyTestClass("AÆTest")
            addEmptyTestClass("ACTest")
            addEmptyTestClass("AÄTest")
            addEmptyTestClass("AZTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbCopyUtil.java

            String path = dest.getLocator().getUNCPath();
            if ( path.length() > 1 ) {
                try {
                    dest.mkdir();
                    if ( dh.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                        dest.setPathInformation(src.getAttributes(), src.createTime(), src.lastModified(), src.lastAccess());
                    }
                    else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  3. src/os/exec/internal/fdtest/exists_unix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || wasm
    
    // Package fdtest provides test helpers for working with file descriptors across exec.
    package fdtest
    
    import (
    	"syscall"
    )
    
    // Exists returns true if fd is a valid file descriptor.
    func Exists(fd uintptr) bool {
    	var s syscall.Stat_t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 487 bytes
    - Viewed (0)
  4. src/os/exec/read3.go

    	// except for any used by the network poller.
    	for fd := uintptr(4); fd <= 100; fd++ {
    		if poll.IsPollDescriptor(fd) {
    			continue
    		}
    
    		if !fdtest.Exists(fd) {
    			continue
    		}
    
    		fmt.Printf("leaked parent file. fdtest.Exists(%d) got true want false\n", fd)
    
    		fdfile := fmt.Sprintf("/proc/self/fd/%d", fd)
    		link, err := os.Readlink(fdfile)
    		fmt.Printf("readlink(%q) = %q, %v\n", fdfile, link, err)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  6. tests/integration/telemetry/testdata/istio-mtls-dest-rule.yaml

    zirain <******@****.***> 1665678622 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 318 bytes
    - Viewed (0)
  7. src/os/exec/internal/fdtest/exists_test.go

    // Copyright 2021 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.
    
    package fdtest
    
    import (
    	"os"
    	"runtime"
    	"testing"
    )
    
    func TestExists(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("Exists not implemented for windows")
    	}
    
    	if !Exists(os.Stdout.Fd()) {
    		t.Errorf("Exists(%d) got false want true", os.Stdout.Fd())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 19:41:37 UTC 2021
    - 427 bytes
    - Viewed (0)
  8. src/os/exec/internal/fdtest/exists_windows.go

    // Copyright 2021 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.
    
    //go:build windows
    
    package fdtest
    
    // Exists is not implemented on windows and panics.
    func Exists(fd uintptr) bool {
    	panic("unimplemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 19:41:37 UTC 2021
    - 305 bytes
    - Viewed (0)
  9. src/path/filepath/symlink.go

    				if len(dest) > volLen {
    					dest += pathSeparator
    				}
    				dest += ".."
    			} else {
    				// Discard everything since the last slash.
    				dest = dest[:r]
    			}
    			continue
    		}
    
    		// Ordinary path component. Add it to result.
    
    		if len(dest) > filepathlite.VolumeNameLen(dest) && !os.IsPathSeparator(dest[len(dest)-1]) {
    			dest += pathSeparator
    		}
    
    		dest += path[start:end]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

      (TF_LessOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    def LogicalNotOfLess : Pat<(
      TF_LogicalNotOp:$src (TF_LessOp $arg0, $arg1)),
      (TF_GreaterEqualOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    def LogicalNotOfLessEqual : Pat<
      (TF_LogicalNotOp:$src (TF_LessEqualOp $arg0, $arg1)),
      (TF_GreaterOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top