Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 711 for Reports (0.15 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	}
    	// 1. generate the local report
    	localContents, err := json.MarshalIndent(report, "", " ")
    	if err != nil {
    		return "", fmt.Errorf("failed to marshal report for %s: %v", expiryDate, err)
    	}
    	// check that the report can be read back
    	// TODO(pjw): remove for production?
    	var report2 telemetry.Report
    	if err := json.Unmarshal(localContents, &report2); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCodeQualityIntegrationTest.groovy

            buildDir.file('reports/codenarc/main.html').assertIsFile()
            buildDir.file('reports/codenarc/test.html').assertIsFile()
            buildDir.file('reports/pmd/main.html').assertIsFile()
            buildDir.file('reports/pmd/main.xml').assertIsFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

        public DependencyReportContainer reports(Closure closure) {
            return reports(new ClosureBackedAction<>(closure));
        }
    
        @Override
        public DependencyReportContainer reports(Action<? super DependencyReportContainer> configureAction) {
            configureAction.execute(reports);
            return reports;
        }
    
        @Inject
        protected ObjectFactory getObjectFactory() {
            throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/go/types/predicates.go

    		if dynamic && !isTypeParam(T) || t.typeSet().IsComparable(seen) {
    			return true
    		}
    		if reportf != nil {
    			if t.typeSet().IsEmpty() {
    				reportf("empty type set")
    			} else {
    				reportf("incomparable types in type set")
    			}
    		}
    		// fallthrough
    	}
    	return false
    }
    
    // hasNil reports whether type t includes the nil value.
    func hasNil(t Type) bool {
    	switch u := under(t).(type) {
    	case *Basic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    // files to handle
    type work struct {
    	// absolute file names
    	countfiles []string // count files to process
    	readyfiles []string // old reports to upload
    	// relative names
    	uploaded map[string]bool // reports that have been uploaded
    }
    
    // find all the files that look like counter files or reports
    // that need to be uploaded. (There may be unexpected leftover files
    // and uploading is supposed to be idempotent.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/internal/platform/supported.go

    	FirstClass   bool
    	Broken       bool
    }
    
    // CgoSupported reports whether goos/goarch supports cgo.
    func CgoSupported(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].CgoSupported
    }
    
    // FirstClass reports whether goos/goarch is considered a “first class” port.
    // (See https://go.dev/wiki/PortingPolicy#first-class-ports.)
    func FirstClass(goos, goarch string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/build.gradle.kts

            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    configurations.compileOnly { extendsFrom(flamegraph) }
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
        reports("jquery:jquery.min:3.5.1@js")
        reports("flot:flot:0.8.1:min@js")
    
        api(project(":base-services"))
        api(project(":core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. api/pom.xml

                    </tag>
                  </tags>
                </configuration>
                <reportSets>
                  <reportSet>
                    <id>aggregate</id>
                    <reports>
                      <report>aggregate</report>
                    </reports>
                    <inherited>false</inherited>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_predicates.go

    	return (*Checker)(nil).implements(nopos, V, T, false, nil)
    }
    
    // Satisfies reports whether type V satisfies the constraint T.
    //
    // The behavior of Satisfies is unspecified if V is Typ[Invalid] or an uninstantiated
    // generic type.
    func Satisfies(V Type, T *Interface) bool {
    	return (*Checker)(nil).implements(nopos, V, T, true, nil)
    }
    
    // Identical reports whether x and y are identical types.
    // Receivers of [Signature] types are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/predicates.go

    		if dynamic && !isTypeParam(T) || t.typeSet().IsComparable(seen) {
    			return true
    		}
    		if reportf != nil {
    			if t.typeSet().IsEmpty() {
    				reportf("empty type set")
    			} else {
    				reportf("incomparable types in type set")
    			}
    		}
    		// fallthrough
    	}
    	return false
    }
    
    // hasNil reports whether type t includes the nil value.
    func hasNil(t Type) bool {
    	switch u := under(t).(type) {
    	case *Basic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top