Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 343 for AdTest (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/test/loadbalancersim/mesh/mesh.go

    }
    
    func (m *Instance) NewConnection(src *Client, dest *Node) network.Connection {
    	// Lookup the route between the source and destination
    	networkLatency := m.s.NetworkLatencies[RouteKey{
    		Src:  src.Locality(),
    		Dest: dest.Locality(),
    	}]
    
    	request := dest.Request
    	if networkLatency > time.Duration(0) {
    		request = func(onDone func()) {
    			m.networkQ.Schedule(func() {
    				dest.Request(onDone)
    			}, time.Now().Add(networkLatency))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

            def jar = new JarTestFixture(file('dest/test.jar'), 'ISO-8859-15')
            jar.assertContainsFile('mojibakā‚¬.txt')
        }
    
        @Issue('GRADLE-3374')
        def "write manifest encoded using UTF-8 when platform default charset is not UTF-8"() {
            given:
            buildScript """
                task jar(type: Jar) {
                    from file('test')
                    destinationDirectory = file('dest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    from 'path'
                    into 'dest'
                    filesMatching ('**/a*') {
                        name = "DEST-" + sourceName
                    }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants('bcd.txt', 'DEST-abc.txt')
            file('dest/DEST-abc.txt').text == 'content'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/tables.go

    	dest.CondNeg(int(xmask & 1))
    }
    
    // Set dest to x*Q, where -8 <= x <= 8, in constant time.
    func (v *affineLookupTable) SelectInto(dest *affineCached, x int8) {
    	// Compute xabs = |x|
    	xmask := x >> 7
    	xabs := uint8((x + xmask) ^ xmask)
    
    	dest.Zero()
    	for j := 1; j <= 8; j++ {
    		// Set dest = j*Q if |x| = j
    		cond := subtle.ConstantTimeByteEq(xabs, uint8(j))
    		dest.Select(&v.points[j-1], dest, cond)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/escape/CharEscaper.java

            dest = growBuffer(dest, destIndex, destSize);
          }
    
          // If we have skipped any characters, we need to copy them now.
          if (charsSkipped > 0) {
            s.getChars(lastEscape, index, dest, destIndex);
            destIndex += charsSkipped;
          }
    
          // Copy the replacement string into the dest buffer as needed.
          if (rlen > 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. callbacks/update.go

    				if rows, err := db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...); db.AddError(err) == nil {
    					dest := db.Statement.Dest
    					db.Statement.Dest = db.Statement.ReflectValue.Addr().Interface()
    					gorm.Scan(rows, db, mode)
    					db.Statement.Dest = dest
    					db.AddError(rows.Close())
    				}
    			} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:44:55 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top