Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 2,496 for Reports (0.14 sec)

  1. src/net/ipsock.go

    	ipv6Enabled           bool
    	ipv4MappedIPv6Enabled bool
    }
    
    var ipStackCaps ipStackCapabilities
    
    // supportsIPv4 reports whether the platform supports IPv4 networking
    // functionality.
    func supportsIPv4() bool {
    	ipStackCaps.Once.Do(ipStackCaps.probe)
    	return ipStackCaps.ipv4Enabled
    }
    
    // supportsIPv6 reports whether the platform supports IPv6 networking
    // functionality.
    func supportsIPv6() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            when(project.getGroupId()).thenReturn("org.apache.maven.plugins.overflow");
            when(project.getArtifactId()).thenReturn("maven-project-info-reports-plugin");
            when(project.getPackaging()).thenReturn("maven-plugin");
            when(project.getName()).thenReturn("Apache Maven Project Info Reports Plugin");
            when(project.getVersion()).thenReturn("3.0.0-SNAPSHOT");
            when(event.getProject()).thenReturn(project);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/crypto/internal/alias/alias.go

    // license that can be found in the LICENSE file.
    
    // Package alias implements memory aliasing tests.
    // This code also exists as golang.org/x/crypto/internal/alias.
    package alias
    
    import "unsafe"
    
    // AnyOverlap reports whether x and y share memory at any (not necessarily
    // corresponding) index. The memory beyond the slice length is ignored.
    func AnyOverlap(x, y []byte) bool {
    	return len(x) > 0 && len(y) > 0 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpotBugsPluginSmokeTest.groovy

                    id 'com.github.spotbugs' version '${TestedVersions.spotbugs}'
                }
    
                ${mavenCentralRepository()}
    
                tasks.withType(SpotBugsTask) {
                    reports.create("html")
                }
    
                """.stripIndent()
    
            file('src/main/java/example/Application.java') << """
                package example;
    
                public class Application {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/path.go

    			p = rel
    		}
    		out = append(out, p)
    	}
    	return out
    }
    
    // IsTestFile reports whether the source file is a set of tests and should therefore
    // be excluded from coverage analysis.
    func IsTestFile(file string) bool {
    	// We don't cover tests, only the code they test.
    	return strings.HasSuffix(file, "_test.go")
    }
    
    // IsNull reports whether the path is a common name for the null device.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 19:17:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/plugins/BuildDashboardPlugin.java

    import org.gradle.api.reporting.Reporting;
    import org.gradle.api.reporting.ReportingExtension;
    import org.gradle.api.tasks.TaskProvider;
    
    /**
     * Adds a task, "buildDashboard", that aggregates the output of all tasks that produce reports.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/build_dashboard_plugin.html">Build Dashboard plugin reference</a>
     */
    public abstract class BuildDashboardPlugin implements Plugin<Project> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/kotlin/dependency-reports/settings.gradle.kts

    rootProject.name = "dependency-reports"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/customDirs/tests/javaCustomReportDirs.out

    my-reports
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/projectReports/groovy/settings.gradle

    rootProject.name = 'project-reports'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 61 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/interface.go

    func (t *Interface) Method(i int) *Func { return t.typeSet().Method(i) }
    
    // Empty reports whether t is the empty interface.
    func (t *Interface) Empty() bool { return t.typeSet().IsAll() }
    
    // IsComparable reports whether each type in interface t's type set is comparable.
    func (t *Interface) IsComparable() bool { return t.typeSet().IsComparable(nil) }
    
    // IsMethodSet reports whether the interface t is fully described by its method set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top