Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for REPORT (0.09 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

    class EnvironmentDecoder(
        val environment: Map<Int, Any>
    ) : ClassDecoder {
        override fun ReadContext.decodeClass(): Class<*> =
            environment[readSmallInt()]?.uncheckedCast()!!
    }
    
    
    /**
     * TODO: report problems via the Problems API
     */
    private
    object ThrowingProblemsListener : AbstractProblemsListener() {
        override fun onProblem(problem: PropertyProblem) {
            // TODO: consider throwing more specific exception
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheBuildSrcProblemReportingIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def "does not report configuration and runtime problems in buildSrc"() {
            file("buildSrc/build.gradle") << """
                // These should not be reported, as neither of these are serialized
                gradle.buildFinished { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

        private val listenerManager: ListenerManager,
        private val fileCollectionFactory: FileCollectionFactory,
        private val directoryFileTreeFactory: DirectoryFileTreeFactory,
        private val report: ConfigurationCacheReport,
        private val problemFactory: ProblemFactory,
        private val workExecutionTracker: WorkExecutionTracker,
        private val environmentChangeTracker: ConfigurationCacheEnvironmentChangeTracker,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. cni/pkg/log/uds.go

    func (l *UDSLogger) handleLog(w http.ResponseWriter, req *http.Request) {
    	if req.Body == nil {
    		return
    	}
    	defer req.Body.Close()
    	data, err := io.ReadAll(req.Body)
    	if err != nil {
    		log.Errorf("Failed to read log report from cni plugin: %v", err)
    		return
    	}
    	l.processLog(data)
    }
    
    func (l *UDSLogger) processLog(body []byte) {
    	cniLogs := make([]string, 0)
    	err := json.Unmarshal(body, &cniLogs)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          try {
            new NullPointerTester().testMethodParameter(new OneArg(), method, 0);
          } catch (AssertionError expected) {
            foundProblem = true;
          }
          assertTrue("Should report error in method " + methodName, foundProblem);
        }
      }
    
      public void testNonStaticOneArgMethodsThatShouldPass() throws Exception {
        OneArg foo = new OneArg();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    		s.computeProxyState(con.proxy, pushRequest)
    	}
    
    	if !s.ProxyNeedsPush(con.proxy, pushRequest) {
    		deltaLog.Debugf("Skipping push to %v, no updates required", con.ID())
    		if pushRequest.Full {
    			// Only report for full versions, incremental pushes do not have a new version
    			reportAllEventsForProxyNoPush(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    		}
    		return nil
    	}
    
    	// Send pushes to all generators
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            return projectDir;
        }
    
        /**
         * Specifies if a profile report should be generated.
         *
         * @param profile true if a profile report should be generated
         */
        public void setProfile(boolean profile) {
            this.profile = profile;
        }
    
        /**
         * Returns true if a profile report will be generated.
         */
        public boolean isProfile() {
            return profile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. common/Makefile.common.mk

    format-python:
    	@${FINDFILES} -name '*.py' -print0 | ${XARGS} autopep8 --max-line-length 160 --aggressive --aggressive -i
    
    dump-licenses: mod-download-go
    	@license-lint --config common/config/license-lint.yml --report
    
    dump-licenses-csv: mod-download-go
    	@license-lint --config common/config/license-lint.yml --csv
    
    mirror-licenses: mod-download-go
    	@rm -fr licenses
    	@license-lint --mirror
    
    TMP := $(shell mktemp -d -u)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="JavadocPackage"
                  files=".*[/\\]platforms[/\\]jvm[/\\]plugins-test-report-aggregation[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\]plugins[/\\][^/\\]+"/>
    
        <suppress checks="JavadocPackage"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            if (isInputTrackingDisabled()) {
                return
            }
            // Ignore consumer for now, only used by Gradle internals and so shouldn't appear in the report.
            captureFile(file)
        }
    
        override fun directoryChildrenObserved(file: File) {
            if (isInputTrackingDisabled()) {
                return
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top