Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for descendant (0.04 sec)

  1. android/guava-tests/test/com/google/common/collect/FauxveridesTest.java

          }
        }
    
        return publicStaticMethods;
      }
    
      /** [descendant, ancestor) */
      private static Set<Class<?>> getClassesBetween(Class<?> descendant, Class<?> ancestor) {
        Set<Class<?>> classes = new HashSet<>();
    
        while (!descendant.equals(ancestor)) {
          classes.add(descendant);
          descendant = descendant.getSuperclass();
        }
    
        return classes;
      }
    
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 9.4K bytes
    - Viewed (0)
  2. cmd/metrics-v3-types.go

    }
    
    // isDescendantOf returns true if it is a descendant of (or the same as)
    // `ancestor`.
    //
    // For example:
    //
    //	 	/a, /a/b, /a/b/c are all descendants of /a.
    //		/abc or /abd/a are not descendants of /ab.
    func (cp collectorPath) isDescendantOf(arg string) bool {
    	descendant := string(cp)
    	if descendant == arg {
    		return true
    	}
    	if len(arg) >= len(descendant) {
    		return false
    	}
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-28 19:33
    - 15.6K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/SubprojectsInfo.kt

                subprojectDir.hasDescendantDir("src/integTest"),
                subprojectDir.hasDescendantDir("src/crossVersionTest")
            )
        }
    
        private
        fun File.hasDescendantDir(descendant: String) = resolve(descendant).isDirectory
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-03-10 01:32
    - 3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         */
        @Nonnull
        String asString();
    
        /**
         * Obtain a Stream containing this node and all its descendants.
         *
         * @return a stream containing this node and its descendants
         */
        @Nonnull
        default Stream<Node> stream() {
            return Stream.concat(Stream.of(this), getChildren().stream().flatMap(Node::stream));
        }
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-03-24 14:10
    - 4.2K bytes
    - Viewed (0)
  5. cmd/metrics-v3-handler.go

    		}
    		return handler
    	}
    
    	// In each of the following cases, we check if the collect path is a
    	// descendant of `path`, and if so, we add the corresponding gatherer to
    	// the list of gatherers. This way, /api/a will return all metrics returned
    	// by /api/a/b and /api/a/c (and any other matching descendant collector
    	// paths).
    
    	var gatherers []prometheus.Gatherer
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-07-15 16:28
    - 7.8K bytes
    - Viewed (0)
  6. internal/s3select/sql/evaluate.go

    //
    // During evaluation, the query is known to be valid, as analysis is
    // complete. The only errors possible are due to value type
    // mismatches, etc.
    //
    // If an aggregation node is present as a descendant (when
    // e.prop.isAggregation is true), we call evalNode on all child nodes,
    // check for errors, but do not perform any combining of the results
    // of child nodes. The final result row is returned after all rows are
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-23 19:35
    - 12K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/MoreFiles.java

           *   failure during the initial lookup of the path argument itself is rethrown directly. So
           *   any exception that we're seeing here is from a descendant, which naturally has a parent.
           *   I think.
           *
           * Still, if this can happen somehow (a weird filesystem implementation that lets callers
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-14 16:07
    - 34.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.search_result_sort_last_modified_asc	=	Dernière modification (croissant)
    labels.search_result_sort_last_modified_desc	=	Dernière modification (décroissant)
    labels.search_result_sort_click_count_asc	=	Clics (ascendant)
    labels.search_result_sort_click_count_desc	=	Clics (descendant)
    labels.search_result_sort_favorite_count_asc	=	Favori (croissant)
    labels.search_result_sort_favorite_count_desc	=	Favori (décroissant)
    labels.search_result_sort_multiple	=	Plusieurs
    Registered: 2025-05-26 08:04
    - Last Modified: 2024-11-07 06:19
    - 46.6K bytes
    - Viewed (0)
  9. fastapi/dependencies/utils.py

    
    def get_flat_dependant(
        dependant: Dependant,
        *,
        skip_repeats: bool = False,
        visited: Optional[List[CacheKey]] = None,
    ) -> Dependant:
        if visited is None:
            visited = []
        visited.append(dependant.cache_key)
    
        flat_dependant = Dependant(
            path_params=dependant.path_params.copy(),
            query_params=dependant.query_params.copy(),
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-03-23 20:48
    - 35.1K bytes
    - Viewed (3)
  10. fastapi/openapi/utils.py

        *,
        dependant: Dependant,
        schema_generator: GenerateJsonSchema,
        model_name_map: ModelNameMap,
        field_mapping: Dict[
            Tuple[ModelField, Literal["validation", "serialization"]], JsonSchemaValue
        ],
        separate_input_output_schemas: bool = True,
    ) -> List[Dict[str, Any]]:
        parameters = []
        flat_dependant = get_flat_dependant(dependant, skip_repeats=True)
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-03-23 20:48
    - 23.4K bytes
    - Viewed (0)
Back to top