Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for SkipParent (0.32 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/feature/FeatureInjector.java

         * skip:
         *       features: allowed_warnings
         * </pre>
         */
        @Internal
        public abstract String getSkipFeatureName();
    
        private boolean hasFeature(ArrayNode skipParent) {
            JsonNode features = skipParent.at("/0/skip/features");
            if (features != null) {
                if (features.isArray()) {
                    ArrayNode featuresArray = (ArrayNode) features;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/skip/Skip.java

                setupNode = (ArrayNode) setupNodeParent.get("setup");
                addSkip(setupNode);
            }
            return setupNodeParent;
        }
    
        private void addSkip(ArrayNode skipParent) {
            Iterator<JsonNode> skipParentIt = skipParent.elements();
            boolean found = false;
            while (skipParentIt.hasNext()) {
                JsonNode arrayEntry = skipParentIt.next();
                if (arrayEntry.isObject()) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 4K bytes
    - Click Count (0)
  3. cmd/storage-interface.go

    	RenameFile(ctx context.Context, srcVolume, srcPath, dstVolume, dstPath string) error
    	RenamePart(ctx context.Context, srcVolume, srcPath, dstVolume, dstPath string, meta []byte, skipParent string) error
    	CheckParts(ctx context.Context, volume string, path string, fi FileInfo) (*CheckPartsResp, error)
    	Delete(ctx context.Context, volume string, path string, opts DeleteOptions) (err error)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Apr 25 05:41:04 GMT 2025
    - 5.3K bytes
    - Click Count (0)
Back to Top