Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 207 for Gleason (0.15 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Status.yaml

    details:
      causes:
      - field: fieldValue
        message: messageValue
        reason: reasonValue
      group: groupValue
      kind: kindValue
      name: nameValue
      retryAfterSeconds: 5
      uid: uidValue
    kind: Status
    message: messageValue
    metadata:
      continue: continueValue
      remainingItemCount: 4
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
    reason: reasonValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 410 bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            withDumpAgentStatusTask()
    
            when:
            succeeds()
    
            then:
            agentWasApplied()
        }
    
        @Requires(
            value = IntegTestPreconditions.IsConfigCached,
            reason = "Tests the configuration cache behavior"
        )
        def "keeping agent status does not invalidate the configuration cache"() {
            def configurationCache = new ConfigurationCacheFixture(this)
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinGradlePluginInitIntegrationTest.groovy

    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl.KOTLIN
    
    @LeaksFileHandles
    @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier, reason = "Kotlin doesn't run on Java 22 without further configuration yet")
    class KotlinGradlePluginInitIntegrationTest extends AbstractInitIntegrationSpec {
    
        @Override
        String subprojectName() { 'plugin' }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.Status.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 608 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalModuleDependencyMetadata.java

        private final String reason;
        private final boolean isEndorsing;
        private final List<IvyArtifactName> artifacts;
    
        public ExternalModuleDependencyMetadata(@Nullable String reason, boolean endorsing, List<IvyArtifactName> artifacts) {
            this.reason = reason;
            this.isEndorsing = endorsing;
            this.artifacts = artifacts;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

                """.trimIndent()
            )
    
            assertEquals(2, result.size)
            assertEquals(listOf(2, 4), result.map { it.location.sourceData.lineRange.first })
            assertTrue(result.all { it.reason == DocumentCheckFailureReason.DuplicatePluginsBlock })
        }
    
        @Test
        fun `reports all duplicate pluginManagement blocks`() {
            val result = pluginManagementSchema.runChecks(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.json

            "remainingItemCount": 4
          },
          "status": "statusValue",
          "message": "messageValue",
          "reason": "reasonValue",
          "details": {
            "name": "nameValue",
            "group": "groupValue",
            "kind": "kindValue",
            "uid": "uidValue",
            "causes": [
              {
                "reason": "reasonValue",
                "message": "messageValue",
                "field": "fieldValue"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

        // The entry cannot be reused at all and should be recreated from scratch
        class EntryInvalid(val reason: String) : CheckedFingerprint()
    
        // The entry can be reused, however the values for certain projects cannot be reused and should be recreated
        class ProjectsInvalid(val reason: String, val invalidProjects: Set<Path>) : CheckedFingerprint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1/types.go

    	Action string `json:"action,omitempty" protobuf:"bytes,6,name=action"`
    
    	// reason is why the action was taken. It is human-readable.
    	// This field cannot be empty for new Events and it can have at most 128 characters.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,7,name=reason"`
    
    	// regarding contains the object this Event is about. In most cases it's an Object reporting controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. istioctl/pkg/checkinject/checkinject.go

    			Name:     mwc.Name,
    			Revision: rev,
    			Injected: injected,
    			Reason:   reason,
    		})
    	}
    	sort.Slice(results, func(i, j int) bool {
    		return results[i].Name < results[j].Name
    	})
    	return results
    }
    
    func analyzeWebhooksMatchStatus(whs []admitv1.MutatingWebhook, podLabels, nsLabels map[string]string) (reason string, injected bool) {
    	for _, wh := range whs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top