Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 665 for Reports (0.13 sec)

  1. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ReportGeneratingProfileListener.java

            ProfileReportRenderer renderer = new ProfileReportRenderer();
            SimpleDateFormat fileDateFormat = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");
            File file = new File(getBuildDir(), "reports/profile/profile-" + fileDateFormat.format(new Date(buildProfile.getBuildStarted())) + ".html");
            renderer.writeTo(buildProfile, file);
            renderReportUrl(file);
        }
    
        private File getBuildDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typeparam.go

    // is calls f with the specific type terms of t's constraint and reports whether
    // all calls to f returned true. If there are no specific terms, is
    // returns the result of f(nil).
    func (t *TypeParam) is(f func(*term) bool) bool {
    	return t.iface().typeSet().is(f)
    }
    
    // underIs calls f with the underlying types of the specific type terms
    // of t's constraint and reports whether all calls to f returned true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ImportTest.kt

        }
    
        @Test
        fun `reports ambiguous import errors`() {
            val imports = listOf(
                importOf("a", "b", "C"),
                importOf("a", "c", "C"),
                importOf("a", "b", "D")
            )
            val analysisContext = testContext()
            val result = resolver.collectImports(imports, analysisContext)
    
            assertEquals(
                mapOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/FailOnVersionConflictGraphVisitor.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.DependencyGraphVisitor;
    
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * A visitor which batches up all conflicts and reports them all at once at the end of
     * the resolution.
     */
    public class FailOnVersionConflictGraphVisitor implements DependencyGraphVisitor {
    
        private final Set<Conflict> allConflicts = new LinkedHashSet<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/fipstls/tls.go

    		panic("fipstls: invalid use of Abandon in " + name)
    	}
    	required.Store(false)
    }
    
    // provided by runtime
    func runtime_arg0() string
    
    // Required reports whether FIPS-approved settings are required.
    func Required() bool {
    	return required.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cfg/cfg.go

    				}
    			}
    		}
    	}
    	return def
    }
    
    // isSameDir reports whether dir1 and dir2 are the same directory.
    func isSameDir(dir1, dir2 string) bool {
    	if dir1 == dir2 {
    		return true
    	}
    	info1, err1 := os.Stat(dir1)
    	info2, err2 := os.Stat(dir2)
    	return err1 == nil && err2 == nil && os.SameFile(info1, info2)
    }
    
    // isGOROOT reports whether path looks like a GOROOT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/slices/slices.go

    	for i := range s {
    		if f(s[i]) {
    			return i
    		}
    	}
    	return -1
    }
    
    // Contains reports whether v is present in s.
    func Contains[S ~[]E, E comparable](s S, v E) bool {
    	return Index(s, v) >= 0
    }
    
    // ContainsFunc reports whether at least one
    // element e of s satisfies f(e).
    func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {
    	return IndexFunc(s, f) >= 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. src/testing/testing_windows.go

    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package testing
    
    import (
    	"errors"
    	"internal/syscall/windows"
    	"math/bits"
    	"syscall"
    	"time"
    )
    
    // isWindowsRetryable reports whether err is a Windows error code
    // that may be fixed by retrying a failed filesystem operation.
    func isWindowsRetryable(err error) bool {
    	for {
    		unwrapped := errors.Unwrap(err)
    		if unwrapped == nil {
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/testing/benchmark_test.go

    		// report it as a "/op" unit.
    		b.ReportMetric(float64(compares)/float64(b.N), "compares/op")
    		// This metric is per-time, so divide by b.Elapsed and
    		// report it as a "/ns" unit.
    		b.ReportMetric(float64(compares)/float64(b.Elapsed().Nanoseconds()), "compares/ns")
    	})
    }
    
    func ExampleB_ReportMetric_parallel() {
    	// This reports a custom benchmark metric relevant to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

    import org.gradle.api.internal.tasks.TaskDependencyUsageTracker
    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.ProblemsListener
    
    
    /** Reports all usages of the tracked TaskDependency APIs as problems using the [problems] listener.
     * Also checks which tasks in the API return value come from the other projects and tracks the projects coupling using the [coupledProjectsListener]. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top