Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for groupOne (0.85 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void doesNotBreakWhenSomeDependenciesCannotBeResolved() {
            //given
            def repoDir = file("repo")
            maven(repoDir).module("groupOne", "artifactTwo").publish()
    
            createDirs("someApiProject", "impl")
            file("settings.gradle") << "include 'someApiProject', 'impl'\n"
            file('someDependency.jar').createFile()
    
            //when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

    // grouping control dependencies. We don't want to report warnings for these
    // ops, unless they belong to a control path between two side-effecting ops that
    // should not have any dependencies.
    bool IsIntermediateOp(IslandOp island) {
      // These two side-effect-free ops are known to be used for control dependency
      // grouping (e.g., in `BreakUpIslands` pass).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1/types.go

    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.8
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. internal/config/identity/ldap/ldap.go

    // connection. The returned boolean is true iff the group DN is found under one
    // of the configured LDAP base DNs.
    func (l *Config) GetValidatedGroupDN(conn *ldap.Conn, groupDN string) (*xldap.DNSearchResult, bool, error) {
    	if conn == nil {
    		var err error
    		conn, err = l.LDAP.Connect()
    		if err != nil {
    			return nil, false, err
    		}
    		defer conn.Close()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  6. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:deprecated=1.17
    // +k8s:prerelease-lifecycle-gen:removed=1.22
    // +k8s:prerelease-lifecycle-gen:replacement=rbac.authorization.k8s.io,v1,Role
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.role_configuration	=	Rôle
    labels.role_list_name	=	Nom
    labels.role_name	=	Nom
    labels.role_title_details	=	Rôle
    labels.group_configuration	=	Groupe
    labels.group_list_name	=	Nom
    labels.group_name	=	Nom
    labels.group_title_details	=	Groupe
    labels.related_content_configuration	=	Contenu connexe
    labels.related_content_content	=	Contenu
    labels.related_content_list_term	=	Terme
    labels.related_content_term	=	Terme
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

                .collect(Collectors.toList());
            List<String> shortest = splitGroups.get(0);
            if (shortest.size() < 2) {
                // we need at least a prefix of 2 elements, like "com.mycompany", to perform grouping
                return Collections.emptyList();
            }
            List<List<String>> commonPrefixes = new ArrayList<>();
            List<List<String>> remainder = Lists.newArrayList(splitGroups);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            } catch (NoSuchMethodException e) {
                if (value) {
                    throw new InvalidUserDataException("Grouping tests by instances is not supported by this version of TestNG.");
                }
            }
        }
    
        private void setThreadPoolFactoryClass(TestNG testNg, String threadPoolFactoryClass) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

                hasChild('group:b:1.0') {
                    noMoreChildren()
                }
                hasChild('group:d:1.0') {
                    noMoreChildren()
                }
                hasChild('group:e:1.0') {
                    noMoreChildren()
                }
                noMoreChildren()
            }
    
            when:
            sorted = reporter.convertToRenderableItems(dependencies, true)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top