Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for VisitAll (0.07 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

            to.parents.remove(from);
        }
    
        List<String> visitAll() {
            return visitAll(vertices.values(), new HashMap<>(), new ArrayList<>());
        }
    
        List<String> findCycle(Vertex vertex) {
            return visitCycle(Collections.singleton(vertex), new HashMap<>(), new LinkedList<>());
        }
    
        private static List<String> visitAll(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. istioctl/cmd/options.go

    	}
    
    	retval.SetHelpFunc(func(c *cobra.Command, args []string) {
    		c.Printf("The following options can be passed to any command:\n")
    		// (Currently the only global options we show are help options)
    		rootCmd.PersistentFlags().VisitAll(func(flag *pflag.Flag) {
    			if _, ok := helpFlags[flag.Name]; ok {
    				// Currently every flag.Shorthand is "", so there is no point in showing shorthands
    				shorthand := "   "
    				if flag.Shorthand != "" {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. istioctl/pkg/version/version.go

    		GetRemoteVersion: getRemoteInfoWrapper(ctx, &versionCmd, &opts),
    		GetProxyVersions: getProxyInfoWrapper(ctx, &opts),
    	})
    	opts.AttachControlPlaneFlags(versionCmd)
    
    	versionCmd.Flags().VisitAll(func(flag *pflag.Flag) {
    		if flag.Name == "short" {
    			err := flag.Value.Set("true")
    			if err != nil {
    				fmt.Fprintf(os.Stdout, "set flag %q as true failed due to error %v", flag.Name, err)
    			}
    		}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Jul 29 21:11:35 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

        public List<String> computePhases(Lifecycle lifecycle) {
            Graph graph = new Graph();
            lifecycle.phases().forEach(phase -> addPhase(graph, null, null, phase));
            List<String> allPhases = graph.visitAll();
            Collections.reverse(allPhases);
            List<String> computed =
                    allPhases.stream().filter(s -> !s.startsWith("$")).collect(Collectors.toList());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg flag, func Uint64Var(*uint64, string, uint64, string)
    pkg flag, func UintVar(*uint, string, uint, string)
    pkg flag, func Var(Value, string, string)
    pkg flag, func Visit(func(*Flag))
    pkg flag, func VisitAll(func(*Flag))
    pkg flag, method (*FlagSet) Arg(int) string
    pkg flag, method (*FlagSet) Args() []string
    pkg flag, method (*FlagSet) Bool(string, bool, string) *bool
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top