Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,478 for tgroup (0.37 sec)

  1. pilot/pkg/model/policyattachment.go

    		if config.CanonicalGroup(targetRef.GetGroup()) == gvk.KubernetesGateway.CanonicalGroup() &&
    			targetRef.GetKind() == gvk.KubernetesGateway.Kind &&
    			target.Name == gatewayName &&
    			(targetRef.GetNamespace() == "" || targetRef.GetNamespace() == p.Namespace) {
    			return true
    		}
    
    		// Service attached
    		if p.IsWaypoint &&
    			config.CanonicalGroup(targetRef.GetGroup()) == gvk.Service.CanonicalGroup() &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleComponentResolveMetadataSerializer.java

        }
    
        private VirtualComponentIdentifier readModuleIdentifier(Decoder decoder) throws IOException {
            String group = decoder.readString();
            String module = decoder.readString();
            String version = decoder.readString();
            ModuleIdentifier moduleIdentifier = DefaultModuleIdentifier.newId(group, module);
            return new DefaultVirtualModuleComponentIdentifier(moduleIdentifier, version);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/AbstractRepositoryMetadataSource.java

        }
    
        private void checkModuleIdentifier(ModuleComponentIdentifier expectedId, ModuleVersionIdentifier actualId) {
            List<String> errors = new ArrayList<>();
            checkEquals("group", expectedId.getGroup(), actualId.getGroup(), errors);
            checkEquals("module name", expectedId.getModule(), actualId.getName(), errors);
            checkEquals("version", expectedId.getVersion(), actualId.getVersion(), errors);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    ====
    Next to the version, other important identity properties of a library are it's _name_ and _group_.
    The name is directly derived from the subproject name that represents the library.
    It's `lib` in the example so you probably want to adjust it by changing the name of the `lib` folder and the corresponding `include(...)` statement in the `settings.gradle(.kts)` file.
    The _group_ is used to give your library full coordinates when published.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/local_scheme_test.go

    				{Group: "", Version: "v5"},
    				{Group: "bar", Version: "v1"},
    				{Group: "bar", Version: "v2"},
    			},
    			expectedPrioritized: map[string][]schema.GroupVersion{
    				"": {
    					{Group: "", Version: "v3"},
    					{Group: "", Version: "v1"},
    					{Group: "", Version: "v4"},
    					{Group: "", Version: "v5"},
    				},
    				"foo": {
    					{Group: "foo", Version: "v1"},
    					{Group: "foo", Version: "v2"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/java-library-with-excludes.module

                },
                "dependencies": [
                    {
                        "group": "commons-collections",
                        "module": "commons-collections",
                        "version": {
                            "prefers": "3.2.2"
                        }
                    },
                    {
                        "group": "org.springframework",
                        "module": "spring-core",
                        "version": {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    	{Group: "authorization.k8s.io", Kind: "SelfSubjectRulesReview"}:  true,
    
    	{Group: "certificates.k8s.io", Kind: "CertificateSigningRequest"}: true,
    
    	{Group: "", Kind: "Node"}:             true,
    	{Group: "", Kind: "Namespace"}:        true,
    	{Group: "", Kind: "PersistentVolume"}: true,
    	{Group: "", Kind: "ComponentStatus"}:  true,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. guava/module.json

            },
            {
              "group": "com.google.code.findbugs",
              "module": "jsr305",
              "version": {
                "requires": "${jsr305.version}"
              }
            },
            {
              "group": "org.checkerframework",
              "module": "checker-qual",
              "version": {
                "requires": "${checker.version}"
              }
            },
            {
              "group": "com.google.errorprone",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 18:11:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultModuleComponentSelectorTest.groovy

            selector.matchesStrictly(id) == matchesId
    
            where:
            group         | name         | version | matchesId
            'some-group'  | 'some-name'  | '1.0'   | true
            'other-group' | 'some-name'  | '1.0'   | false
            'some-group'  | 'other-name' | '1.0'   | false
            'some-group'  | 'some-name'  | '2.0'   | false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/module-with-dependencies.module

                    { "module": "m5", "version": { "prefers": "v5", "rejects": ["v6", "v7"] }, "group": "g5"},
                    { "module": "m6", "version": { "rejects": ["v8"] }, "group": "g6"},
                    { "module": "m7", "version": { "rejects": ["v7"] }, "group": "g7", "reason": "v7 is buggy"},
                    { "module": "m8", "version": { "strictly": "v8" }, "group": "g8"},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top