Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 749 for reason2 (0.59 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

                String reason = "Expected a " + cvf.getKind() + " checksum of " + expected(cvf.getExpected()) + " but was " + actual(cvf.getActual());
                reportItem(reason, "checksum-mismatch", "warning");
            } else if (vf instanceof OnlyIgnoredKeys) {
                String reason = "All public keys have been ignored";
                reportItem(reason, "missing-checksums", "info");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

                if (cand.getVariantName().equals(resolutionDetails.selected.getVariantName())) {
                    cand.select();
                    String reason = resolutionDetails.reason;
                    if (reason != null) {
                        cand.byReason(Describables.of("On capability", version.getCapabilityId(), reason));
                    }
                } else {
                    cand.evict();
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. pkg/apis/certificates/types.go

    	// Approved, Denied, and Failed conditions may not be "False" or "Unknown".
    	// If unset, should be treated as "True".
    	// +optional
    	Status api.ConditionStatus
    	// brief reason for the request state
    	// +optional
    	Reason string
    	// human readable message with details about the request state
    	// +optional
    	Message string
    	// timestamp for the last update to this condition
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

                builder.addTrustedArtifact(group, name, version, fileName, regex, reason)
            }
    
            void addGloballyIgnoredKey(String id, String reason = "for tests") {
                builder.addIgnoredKey(new IgnoredKey(id, reason))
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    val reason = checkFingerprintValueIsUpToDate(obtainedValue)
                    if (reason != null) return reason
                }
                is ConfigurationCacheFingerprint.InitScripts -> input.run {
                    val reason = checkInitScriptsAreUpToDate(fingerprints, host.allInitScripts)
                    if (reason != null) return reason
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                assertHasAccepted(
                    "Method com.example.Task.getSourceCompatibility(): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method return type has changed", "Method is now abstract"),
                    "Method com.example.Task.setSourceCompatibility(java.lang.String): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method has been removed")
                )
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

                return cannot("finalize", displayName, reason);
            }
    
            private String cannotQueryValueOf(Describable displayName, String reason) {
                return cannot("query", displayName, reason);
            }
    
            private String cannot(String what, Describable displayName, String reason) {
                TreeFormatter formatter = new TreeFormatter();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      override fun close(
        code: Int,
        reason: String?,
      ): Boolean {
        return close(code, reason, webSocketCloseTimeout)
      }
    
      @Synchronized fun close(
        code: Int,
        reason: String?,
        cancelAfterCloseMillis: Long,
      ): Boolean {
        validateCloseCode(code)
    
        var reasonBytes: ByteString? = null
        if (reason != null) {
          reasonBytes = reason.encodeUtf8()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

                strategy
            )
    
            when:
            DaemonExpirationResult result = underTest.checkExpiration()
    
            then:
            result.status == IMMEDIATE_EXPIRE
            result.reason == "since the JVM garbage collector is thrashing"
        }
    
        def "daemon is expired when heap space is low" () {
            given:
            def underTest = new HealthExpirationStrategy(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                    } else {
                        stopNow(reason);
                    }
                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void requestForcefulStop(String reason) {
            LOGGER.lifecycle(DAEMON_STOPPING_IMMEDIATELY_MESSAGE + reason);
            stopNow(reason);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top