Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for groupWith (0.61 sec)

  1. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineOption.java

        }
    
        public boolean isIncubating() {
            return incubating;
        }
    
        Set<CommandLineOption> getGroupWith() {
            return groupWith;
        }
    
        void groupWith(Set<CommandLineOption> options) {
            this.groupWith.addAll(options);
            this.groupWith.remove(this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    org/gradle/cli/CommandLineOption.class package org.gradle.cli; public synchronized class CommandLineOption { private final java.util.Set options; private Class argumentType; private String description; private boolean incubating; private final java.util.Set groupWith; private boolean deprecated; public void CommandLineOption(Iterable); public java.util.Set getOptions(); public CommandLineOption hasArgument(Class); public CommandLineOption hasArgument(); public CommandLineOption hasArguments(); public String getDescription();...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

            for (String option : options) {
                commandLineOptions.add(optionsByString.get(option));
            }
            for (CommandLineOption commandLineOption : commandLineOptions) {
                commandLineOption.groupWith(commandLineOptions);
            }
            return this;
        }
    
        /**
         * Prints a usage message to the given stream.
         *
         * @param out The output stream to write to.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. gradle/wrapper/gradle-wrapper.jar

    ); } org/gradle/cli/CommandLineOption.class package org.gradle.cli; public final synchronized class CommandLineOption { public final java.util.HashSet options; public Class argumentType; public String description; public final java.util.HashSet groupWith; public void CommandLineOption(java.util.List); public final java.util.HashSet getOptions(); } org/gradle/cli/CommandLineParser$AfterOptions.class package org.gradle.cli; public final synchronized class CommandLineParser$AfterOptions extends Com...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  5. gradle/wrapper/gradle-wrapper.jar

    ); } org/gradle/cli/CommandLineOption.class package org.gradle.cli; public final synchronized class CommandLineOption { public final java.util.HashSet options; public Class argumentType; public String description; public final java.util.HashSet groupWith; public void CommandLineOption(java.util.List); public final java.util.HashSet getOptions(); } org/gradle/cli/CommandLineParser$AfterOptions.class package org.gradle.cli; public final synchronized class CommandLineParser$AfterOptions extends Com...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/PluginTree.kt

                        ?.put(path.last(), plugin)
                }
                return root
            }
    
            private
            fun pluginTreeForGroup(groupPath: List<String>, root: MutableMap<String, PluginTree>): MutableMap<String, PluginTree>? {
                var branch = root
                groupPath.forEachIndexed { index, segment ->
                    when (val group = branch[segment]) {
                        null -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/podcgroupns_test.go

    }
    
    // copied and modified from spire
    
    func TestGetContainerIDFromCGroups(t *testing.T) {
    	makeCGroups := func(groupPaths []string) []Cgroup {
    		var out []Cgroup
    		for _, groupPath := range groupPaths {
    			out = append(out, Cgroup{
    				GroupPath: groupPath,
    			})
    		}
    		return out
    	}
    
    	//nolint: lll
    	for _, tt := range []struct {
    		name              string
    		cgroupPaths       []string
    		expectPodUID      types.UID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

            private final ExternalResourceRepository repository;
            private final boolean localRepo;
            private final URI rootUri;
            private final String groupPath;
            private final String artifactId;
            private final String moduleVersion;
            private String artifactVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/podcgroupns.go

    		if unicode.IsPunct(r) {
    			r = '-'
    		}
    		return r
    	}, uid))
    }
    
    // Cgroup represents a linux cgroup.
    type Cgroup struct {
    	HierarchyID    string
    	ControllerList string
    	GroupPath      string
    }
    
    // GetCGroups returns a slice of cgroups for pid using fs for filesystem calls.
    //
    // The expected cgroup format is "hierarchy-ID:controller-list:cgroup-path", and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    		path := resPath.Index(i)
    		if errs := metav1validation.ValidateLabelName(res, path); len(errs) != 0 {
    			allErrs = append(allErrs, errs...)
    		}
    	}
    
    	groupPath := path.Child("ignoredResourceGroups")
    	for i, group := range args.IgnoredResourceGroups {
    		path := groupPath.Index(i)
    		if strings.Contains(group, "/") {
    			allErrs = append(allErrs, field.Invalid(path, group, "resource group name can't contain '/'"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top