Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,195 for tgroup (0.22 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/GradleTaskGetGroupCrossVersionSpec.groovy

            gradleProject.tasks.findAll { it.name.startsWith('test') }.each {
                assert it.group == "task group ${it.name-'test'}"
            }
        }
    
        def "provide getGroup on Task using BuildInvocations"() {
            file("build.gradle") << '''
    task test1(group:'task group 1')
    task test2(group:'task group 2')
    '''
    
            when:
            def buildInvocations = withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModelTest.groovy

            model.build()
    
            then:
            model.groups == ([group] + groups - null) as Set
    
            where:
            group    | groups
            'group1' | []
            'group2' | []
            null     | ['group1']
            null     | ['group1', 'group2']
            'group1' | ['group2']
        }
    
        def "handles group which is not present in each project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 31 16:45:11 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/util/cgroups_linux.go

    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    	libcontainerutils "github.com/opencontainers/runc/libcontainer/utils"
    )
    
    const (
    	// CgroupRoot is the base path where cgroups are mounted
    	CgroupRoot = "/sys/fs/cgroup"
    )
    
    // GetPids gets pids of the desired cgroup
    // Forked from opencontainers/runc/libcontainer/cgroup/fs.Manager.GetPids()
    func GetPids(cgroupPath string) ([]int, error) {
    	dir := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 07:50:19 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultModuleVersionIdentifier.java

        private final int hashCode;
    
        private DefaultModuleVersionIdentifier(String group, String name, String version) {
            assert group != null : "group cannot be null";
            assert name != null : "name cannot be null";
            assert version != null : "version cannot be null";
            this.id = DefaultModuleIdentifier.newId(group, name);
            this.version = version;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyConstraintTest.groovy

            expect:
            constraint("group1", "name1", "version1") == constraint("group1", "name1", "version1")
            constraint("group1", "name1", "version1").hashCode() == constraint("group1", "name1", "version1").hashCode()
            constraint("group1", "name1", "version1") != constraint("group1", "name1", "version2")
            constraint("group1", "name1", "version1") != constraint("group1", "name2", "version1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 08 06:14:35 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  6. releasenotes/notes/drop-legacy-fsgroup-injection.yaml

    John Howard <******@****.***> 1682631570 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 21:39:30 UTC 2023
    - 227 bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-groups-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: groups
    spec:
      rules:
      # Has mix of L4 and L7 in from
      - from:
        - source:
            principals: ["from-mix-principal"]
            requestPrincipals: ["from-mix-requestPrincipals"]
            namespaces: ["from-mix-ns"]
        to:
        - operation:
            ports: ["80"]
      # Has mix of L4 and L7 in to
      - from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups.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.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux_test.go

    		[]mount.MountPoint{
    			{
    				Device: "cgroup",
    				Type:   "cgroup",
    				Opts:   []string{"rw", "relatime", "cpuset"},
    			},
    			{
    				Device: "cgroup",
    				Type:   "cgroup",
    				Opts:   []string{"rw", "relatime", "cpu"},
    			},
    			{
    				Device: "cgroup",
    				Type:   "cgroup",
    				Opts:   []string{"rw", "relatime", "cpuacct"},
    			},
    			{
    				Device: "cgroup",
    				Type:   "cgroup",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.group;
    
    import static org.codelibs.fess.app.web.admin.group.AdminGroupAction.getGroup;
    import static org.codelibs.fess.app.web.admin.group.AdminGroupAction.validateAttributes;
    
    import java.util.List;
    import java.util.stream.Collectors;
    
    import javax.annotation.Resource;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top