Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 174 for REPORT (0.31 sec)

  1. pkg/config/analysis/analyzers/sidecar/selector.go

    		}
    
    		sNames := getNames(sList)
    
    		for _, rs := range sList {
    			// We don't want to report errors for pods in ambient mode, since there is no sidecar,
    			// but we do want to warn that the policy is ineffective.
    			if util.PodInAmbientMode(podResource) {
    				if !reportedResources[rs.Metadata.FullName.String()] {
    					c.Report(gvk.Sidecar, msg.NewIneffectivePolicy(rs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	match := dateRE.FindStringSubmatch(fname)
    	if match == nil || len(match) < 2 {
    		u.logger.Printf("Report name %q missing date", filepath.Base(fname))
    	} else if match[1] > today {
    		u.logger.Printf("Report date for %q is later than today (%s)", filepath.Base(fname), today)
    		return // report is in the future, which shouldn't happen
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

                dirs.from(result);
            }
        }
    
        /**
         * Adds some results to include in the report.
         *
         * <p>This method accepts any parameter of the given types:
         *
         * <ul>
         *
         * <li>A {@link Test} task instance. The results from the test task are included in the report. The test task is automatically added
         * as a dependency of this task.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractDependencyReportTask.java

        }
    
        /**
         * Sets the single configuration (by name) to generate the report for.
         *
         * @param configurationName name of the configuration to generate the report for
         */
        @Option(option = "configuration", description = "The configuration to generate the report for.")
        public void setConfiguration(String configurationName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/reporting/build.gradle.kts

    import gradlebuild.basics.googleApisJs
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Report type classes and plugins for reporting (build dashboard, report container)"
    
    errorprone {
        disabledChecks.addAll(
            "EqualsUnsafeCast", // 1 occurrences
        )
    }
    
    val implementationResources: Configuration by configurations.creating
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildProfileIntegrationTest.groovy

            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateStored()
            def report = findReport()
    
            and:
            report.delete()
    
            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateLoaded()
            findReport()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    == Profile report
    
    If you prefer not to use build scans, you can generate an HTML report in the
    `build/reports/profile` directory of your root project. To generate this report,
    use the `--profile` command-line option:
    
    [listing.terminal]
    ----
    $ gradle --profile <tasks>
    ----
    
    Each profile report has a timestamp in its name to avoid overwriting existing ones.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/fix/main.go

    		if err := processFile("standard input", true); err != nil {
    			report(err)
    		}
    		os.Exit(exitCode)
    	}
    
    	for i := 0; i < flag.NArg(); i++ {
    		path := flag.Arg(i)
    		switch dir, err := os.Stat(path); {
    		case err != nil:
    			report(err)
    		case dir.IsDir():
    			walkDir(path)
    		default:
    			if err := processFile(path, false); err != nil {
    				report(err)
    			}
    		}
    	}
    
    	os.Exit(exitCode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcPlugin.java

            task.getReports().all(action(report -> {
                report.getRequired().convention(providers.provider(() -> report.getName().equals(reportFormat.get())));
                report.getOutputLocation().convention(layout.getProjectDirectory().file(providers.provider(() -> {
                    String fileSuffix = report.getName().equals("text") ? "txt" : report.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:49:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. 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)
Back to top