Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for redeclared (0.25 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

        def setup() {
            enableProblemsApiCheck()
        }
    
        def "dependencies declared in settings trigger the creation of an extension (notation=#notation)"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains 'Providing metadata for group:projectB:2.2'
            outputContains 'Providing metadata for group:projectB:1.1'
    
            // Because the consumer has declared attributes, we now need to call the supplier for projectA too
            outputContains 'Providing metadata for group:projectA:1.2'
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                }
            }
    
            and:
            outputDoesNotContain("Cannot set attributes for constraint \"org:test:1.0\": it was probably created by a plugin using internal APIs")
        }
    
        def "attributes declared on constraints contribute to graph selection"() {
            given:
            settingsFile << """
                include 'producer'
            """
            file("producer/build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					XValidations: apiextensions.ValidationRules{
    						{Rule: "fakeFunction('abc') == 'ABC'"},
    					},
    				},
    			},
    			unmodified: false,
    			expectedResults: []validationMatcher{
    				invalidError("undeclared reference to 'fakeFunction'"),
    			},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.objs[2] + self.objs[0] == self.objs[0]": 11,
    
    				"self.objs[0] == [self.objs[0][0], self.objs[0][1]]": 22, // equal against a declared list
    				"self.objs[0] == [self.objs[0][1], self.objs[0][0]]": 22,
    
    				"self.objs[2] + [self.objs[0][0], self.objs[0][1]] == self.objs[0]": 26, // concat against a declared list
    				"size(self.objs[0] + [self.objs[3][0]]) == 3":                       20,
    			},
    		},
    		{name: "maps",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                }
            """
    
            when:
            serveValidKey()
    
            then:
            succeeds ":compileJava"
        }
    
        def "if signature is verified and checksum is declared in configuration, verify checksum (terse output=#terse)"() {
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedMap.java

              }
    
              @Override
              ImmutableCollection<Entry<K, V>> delegateCollection() {
                return EntrySet.this;
              }
    
              // redeclare to help optimizers with b/310253115
              @SuppressWarnings("RedundantOverride")
              @Override
              @J2ktIncompatible // serialization
              @GwtIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        // TODO I would like to get rid of this. jvz.
        public Model getModel() {
            return model;
        }
    
        /**
         * Returns the project corresponding to a declared parent.
         *
         * @return the parent, or null if no parent is declared or there was an error building it
         */
        public MavenProject getParent() {
            return parent;
        }
    
        public void setParent(MavenProject parent) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    As a matter of fact, Gradle cannot automatically discover _detached configurations_, which are basically dependency graphs resolved as an internal implementation detail of the execution of a task: they are not, in particular, declared as an input of the task because they effectively depend on the configuration of the task at execution time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

                return true;
              }
    
              @Override
              public int size() {
                return ImmutableSortedMap.this.size();
              }
    
              // redeclare to help optimizers with b/310253115
              @SuppressWarnings("RedundantOverride")
              @Override
              @J2ktIncompatible // serialization
              @GwtIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top