Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 343 for AdTest (0.3 sec)

  1. pkg/test/loadbalancersim/loadbalancer/priority.go

    import (
    	mesh2 "istio.io/istio/pkg/test/loadbalancersim/mesh"
    )
    
    type PrioritySelector func(src *mesh2.Client, dest *mesh2.Node) uint32
    
    func LocalityPrioritySelector(src *mesh2.Client, dest *mesh2.Node) uint32 {
    	priority := uint32(2)
    	if src.Locality().Region == dest.Locality().Region {
    		priority = 1
    		if src.Locality().Zone == dest.Locality().Zone {
    			priority = 0
    		}
    	}
    	return priority
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 1017 bytes
    - Viewed (0)
  2. README.fr.md

        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    Pour exécuter un seul cas de test case, vous pouvez utiliser la commande suivante :
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### Traduire dans d'autres (votre) langue
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ConfigurableFileTreeIntegrationTest.groovy

                files.exclude('**/*ignore*')
                task copy(type: Copy) {
                    from files
                    into 'dest'
                    includeEmptyDirs = false
                }
            """
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'one.txt',
                'a/one.txt',
                'b/not one to IGNORE.txt'
            )
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/HashCode.java

      /**
       * Copies bytes from this hash code into {@code dest}.
       *
       * @param dest the byte array into which the hash code will be written
       * @param offset the start offset in the data
       * @param maxLength the maximum number of bytes to write
       * @return the number of bytes written to {@code dest}
       * @throws IndexOutOfBoundsException if there is not enough room in {@code dest}
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/testing/fake.go

    func (f *FakeIPVS) UpdateRealServer(serv *utilipvs.VirtualServer, dest *utilipvs.RealServer) error {
    	err := f.DeleteRealServer(serv, dest)
    	if err != nil {
    		return err
    	}
    	return f.AddRealServer(serv, dest)
    }
    
    // ConfigureTimeouts is not supported for fake IPVS
    func (f *FakeIPVS) ConfigureTimeouts(time.Duration, time.Duration, time.Duration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. tensorflow/c/kernels_experimental.h

    // caller takes ownership of the `source` and `dest` tensors and is responsible
    // for freeing them with TF_DeleteTensor.
    TF_CAPI_EXPORT extern void TF_AssignRefVariable(
        TF_OpKernelContext* ctx, int input_ref_index, int output_ref_index,
        int value_index, bool use_locking, bool validate_shape,
        void (*copyFunc)(TF_OpKernelContext* ctx, TF_Tensor* source,
                         TF_Tensor* dest),
        TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. callbacks/create_test.go

    			Config: &gorm.Config{
    				NowFunc: func() time.Time { return time.Time{} },
    			},
    			Statement: &gorm.Statement{
    				Settings: sync.Map{},
    				Schema:   s,
    			},
    		},
    		ReflectValue: reflect.ValueOf(dest),
    		Dest:         dest,
    	}
    
    	stmt.Schema = s
    
    	values := ConvertToCreateValues(stmt)
    	expected := clause.Values{
    		// column has value + defaultValue column has value (which should have a stable order)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:48:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/configurationCacheProblemsGroovy.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  9. schema/schema.go

    // Parse get data type from dialector
    func Parse(dest interface{}, cacheStore *sync.Map, namer Namer) (*Schema, error) {
    	return ParseWithSpecialTableName(dest, cacheStore, namer, "")
    }
    
    // ParseWithSpecialTableName get data type from dialector with extra schema table
    func ParseWithSpecialTableName(dest interface{}, cacheStore *sync.Map, namer Namer, specialTableName string) (*Schema, error) {
    	if dest == nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/ClientInjectedClasspathPluginResolver.java

    import java.util.Collection;
    
    public interface ClientInjectedClasspathPluginResolver {
        ClientInjectedClasspathPluginResolver EMPTY = dest -> { };
    
        void collectResolversInto(Collection<? super PluginResolver> dest);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 962 bytes
    - Viewed (0)
Back to top