Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,195 for tgroup (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleVersionSelector.java

     * add methods here if it's for bridging.
     */
    public interface ModuleVersionSelector {
    
        /**
         * The group of the module.
         *
         * @return module group
         */
        String getGroup();
    
        /**
         * The name of the module.
         *
         * @return module name
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/match.go

    	const defaultDistance = 4
    
    	aGroup := uint(regionToGroups[a]) << 1
    	bGroup := uint(regionToGroups[b]) << 1
    	for _, ri := range matchRegion {
    		if language.Language(ri.lang) == lang && (ri.script == 0 || language.Script(ri.script) == script) {
    			group := uint(1 << (ri.group &^ 0x80))
    			if 0x80&ri.group == 0 {
    				if aGroup&bGroup&group != 0 { // Both regions are in the group.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyConstraint.java

        private boolean force;
    
        public DefaultDependencyConstraint(String group, String name, String version) {
            this.moduleIdentifier = DefaultModuleIdentifier.newId(group, name);
            this.versionConstraint = new DefaultMutableVersionConstraint(version);
        }
    
        public static DefaultDependencyConstraint strictly(String group, String name, String strictVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. build-logic/uber-plugins/src/main/kotlin/gradlebuild.ci-lifecycle.gradle.kts

    tasks.configureCICrossVersionTestDistributionLifecycleTasks()
    
    val ciGroup = "CI Lifecycle"
    
    /**
     * Basic compile and check lifecycle tasks.
     */
    fun TaskContainer.registerEarlyFeedbackLifecycleTasks() {
        register("compileAllBuild") {
            description = "Initialize CI Pipeline by priming the cache before fanning out"
            group = ciGroup
            dependsOn("compileAllProduction")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultProblemId.java

        private final String name;
        private final String displayName;
        private final InternalProblemGroup group;
    
        public DefaultProblemId(String name, String displayName, InternalProblemGroup group) {
              this.name = name;
              this.displayName = displayName;
              this.group = group;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/syscall/exec_linux.go

    		}
    	}
    
    	// User and groups
    	if cred = sys.Credential; cred != nil {
    		ngroups = uintptr(len(cred.Groups))
    		groups = uintptr(0)
    		if ngroups > 0 {
    			groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
    		}
    		if !(sys.GidMappings != nil && !sys.GidMappingsEnableSetgroups && ngroups == 0) && !cred.NoSetGroups {
    			_, _, err1 = RawSyscall(_SYS_setgroups, ngroups, groups, 0)
    			if err1 != 0 {
    				goto childerror
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ModuleComponentSelector.java

     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ModuleComponentSelector extends ComponentSelector {
        /**
         * The group of the module to select the component from.
         *
         * @return Module group
         * @since 1.10
         */
        String getGroup();
    
        /**
         * The name of the module to select the component from.
         *
         * @return Module name
         */
        String getModule();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		addGuaranteedContainer      bool
    	}{
    		// With cgroup v1
    		{
    			name:                       "cgroups v1, LimitedSwap, Burstable QoS",
    			cgroupVersion:              cgroupV1,
    			qosClass:                   v1.PodQOSBurstable,
    			nodeSwapFeatureGateEnabled: true,
    			swapBehavior:               types.LimitedSwap,
    		},
    		{
    			name:                       "cgroups v1, LimitedSwap, Best-effort QoS",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/mounter_test.go

    			specJSON(plugin, spec, nil)),
    	)
    
    	m, _ := plugin.newMounterInternal(spec, pod, mounter, plugin.runner)
    	var mounterArgs volume.MounterArgs
    	m.SetUpAt(rootDir+"/mount-dir", mounterArgs)
    
    	group := int64(42)
    	mounterArgs.FsGroup = &group
    	m.SetUpAt(rootDir+"/mount-dir", mounterArgs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 2.3K bytes
    - Viewed (0)
Back to top