Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 294 for AdTest (0.13 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
    
            if( isDirectory() ) {
                SmbFile[] files;
                SmbFile ndest;
    
                String path = dest.getUncPath0();
                if( path.length() > 1 ) {
                    try {
                        dest.mkdir();
                        dest.setPathInformation( attributes, createTime, lastModified );
                    } catch( SmbException se ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  7. 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)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

            when:
            run 'sync'
    
            then:
            file('dest/preservedDir').isDirectory()
            file('dest/emptyDir').isDirectory()
            !file('dest/nonPreservedDir').isDirectory()
        }
    
        def "sync action"() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                file 'extra1.txt'
                extraDir { file 'extra2.txt' }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. README.md

    Launch Fess Server and run the following command:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    To run a single test case, you can use:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### Translate In Your Language
    
    Fess is internationalized software.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    // mergeSpec copies paths, parameters and definitions from source to dest, mutating dest, but not source.
    // We assume that conflicts do not matter.
    func mergeSpec(dest, source *spec.Swagger) {
    	if source == nil || source.Paths == nil {
    		return
    	}
    	if dest.Paths == nil {
    		dest.Paths = &spec.Paths{}
    	}
    	for k, v := range source.Definitions {
    		if dest.Definitions == nil {
    			dest.Definitions = make(spec.Definitions, len(source.Definitions))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top