Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for resettest (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestResourcesPlugin.java

     * configured with `includeCore` or `includeXpack` through the `restResources.restTests` extension.
     * <i>For example:</i>
     * <pre>
     * restResources {
     *  restApi {
     *      includeXpack 'graph'
     *   }
     *   restTests {
     *     includeXpack 'graph'
     *   }
     * }
     * </pre>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  2. docs/fr/docs/how-to/index.md

    # Comment faire - Recettes { #how-to-recipes }
    
    Vous trouverez ici différentes recettes ou des guides « comment faire » pour **plusieurs sujets**.
    
    La plupart de ces idées sont plus ou moins **indépendantes**, et dans la plupart des cas vous n'avez besoin de les étudier que si elles s'appliquent directement à **votre projet**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 690 bytes
    - Click Count (0)
  3. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/fixtures/AbstractRestResourcesFuncTest.groovy

            addSubProject(":rest-api-spec") << """
            configurations { restSpecs\nrestTests }
            artifacts {
              restSpecs(new File(projectDir, "src/main/resources/rest-api-spec/api"))
              restTests(new File(projectDir, "src/yamlRestTest/resources/rest-api-spec/test"))
            }
            """
    
            addSubProject(":x-pack:plugin") << """
            configurations { restXpackSpecs\nrestXpackTests }
            artifacts {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 2.1K bytes
    - Click Count (0)
  4. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/RestResourcesPluginFuncTest.groovy

            given:
            internalBuild()
            buildFile << """
                apply plugin: 'elasticsearch.java'
                apply plugin: 'elasticsearch.rest-resources'
    
                restResources {
                    restTests {
                        includeCore 'foo'
                        includeXpack 'bar'
                    }
                }
            """
            String apiCore1 = "foo1.json"
            String apiCore2 = "foo2.json"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7K bytes
    - Click Count (0)
  5. src/archive/zip/register.go

    		w.fw = nil
    	}
    	return err
    }
    
    var flateReaderPool sync.Pool
    
    func newFlateReader(r io.Reader) io.ReadCloser {
    	fr, ok := flateReaderPool.Get().(io.ReadCloser)
    	if ok {
    		fr.(flate.Resetter).Reset(r, nil)
    	} else {
    		fr = flate.NewReader(r)
    	}
    	return &pooledFlateReader{fr: fr}
    }
    
    type pooledFlateReader struct {
    	mu sync.Mutex // guards Close and Read
    	fr io.ReadCloser
    }
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 3.7K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformer.java

    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    /**
     * Perform the transformations against the set of RestTests from a given file.
     */
    public class RestTestTransformer {
        /**
         * Transforms a REST test based on the requested {@link RestTestTransform}'s
         *
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 12 17:42:01 GMT 2021
    - 8.1K bytes
    - Click Count (0)
Back to Top