Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 8,350 for report (1.38 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java

    package gradlebuild.binarycompatibility.rules;
    
    import com.google.common.collect.ImmutableList;
    import japicmp.model.JApiClass;
    import japicmp.model.JApiCompatibility;
    import japicmp.model.JApiCompatibilityChange;
    import japicmp.model.JApiConstructor;
    import japicmp.model.JApiHasAnnotations;
    import japicmp.model.JApiImplementedInterface;
    import me.champeau.gradle.japicmp.report.Violation;
    
    import java.util.List;
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.building;
    
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.charset.StandardCharsets;
    
    /**
     * Wraps an ordinary {@link CharSequence} as a source.
     *
     */
    public class StringSource implements Source {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRule.groovy

     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility.rules
    
    import japicmp.model.JApiChangeStatus
    import japicmp.model.JApiClass
    import japicmp.model.JApiCompatibility
    import javassist.CtClass
    import me.champeau.gradle.japicmp.report.Violation
    
    class IncubatingInternalInterfaceAddedRule extends AbstractSuperClassChangesRule {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/graph.go

    and one of its requirements. Each module is identified as a string of the form
    path@version, except for the main module, which has no @version suffix.
    
    The -go flag causes graph to report the module graph as loaded by the
    given Go version, instead of the version indicated by the 'go' directive
    in the go.mod file.
    
    The -x flag causes graph to print the commands graph executes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

    package org.gradle.internal.cc.impl.problems
    
    import com.google.common.collect.ImmutableList
    import com.google.common.collect.ImmutableSet
    import com.google.common.collect.Ordering
    import it.unimi.dsi.fastutil.objects.ObjectOpenHashSet
    import org.gradle.api.Task
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.internal.configuration.problems.PropertyProblem
    import org.gradle.internal.extensions.stdlib.capitalized
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.pom

          <artifactId>jmock</artifactId>
          <version>1.0.1</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
      <reporting>
        <plugins>
          <!--plugin>
            <artifactId>maven-surefire-report-plugin</artifactId>
          </plugin-->
          <plugin>
            <artifactId>maven-pmd-plugin</artifactId>
          </plugin>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/initorder.go

    		}
    		if P := findPath(objMap, d, to, seen); P != nil {
    			return append(P, d)
    		}
    	}
    
    	return nil
    }
    
    // reportCycle reports an error for the given cycle.
    func (check *Checker) reportCycle(cycle []Object) {
    	obj := cycle[0]
    
    	// report a more concise error for self references
    	if len(cycle) == 1 {
    		check.errorf(obj, InvalidInitCycle, "initialization cycle: %s refers to itself", obj.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/extension/TestFilesCleanupBuildServiceRootExtension.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.testcleanup.extension
    
    import org.gradle.api.provider.MapProperty
    import org.gradle.api.provider.Property
    import java.io.File
    
    
    /**
     * An extension to work with {@see TestFilesCleanupService}.
     * We have to collect all information we need in this extension and pass them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 08:53:41 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/union.go

    				continue
    			}
    
    			u := under(t.typ)
    			f, _ := u.(*Interface)
    			if t.tilde {
    				if f != nil {
    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (%s is an interface)", t.typ)
    					continue // don't report another error for t
    				}
    
    				if !Identical(u, t.typ) {
    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (underlying type of %s is %s)", t.typ, u)
    					continue
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRuleTest.groovy

     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility.rules
    
    import japicmp.model.JApiCompatibilityChange
    import japicmp.util.Optional
    import javassist.CtClass
    import me.champeau.gradle.japicmp.report.Violation
    
    class MethodsRemovedInInternalSuperClassRuleTest extends AbstractContextAwareRuleSpecification {
        MethodsRemovedInInternalSuperClassRule rule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top