Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for Parses (0.14 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	"k8s.io/kubernetes/pkg/controller/history"
    	"k8s.io/utils/ptr"
    )
    
    // noopRecorder is an EventRecorder that does nothing. record.FakeRecorder has a fixed
    // buffer size, which causes tests to hang if that buffer's exceeded.
    type noopRecorder struct{}
    
    func (r *noopRecorder) Event(object runtime.Object, eventtype, reason, message string) {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// The Causes array includes more details associated with the StatusReason
    	// failure. Not all StatusReasons may provide detailed causes.
    	// +optional
    	// +listType=atomic
    	Causes []StatusCause `json:"causes,omitempty" protobuf:"bytes,4,rep,name=causes"`
    	// If specified, the time in seconds before the operation should be retried. Some errors may indicate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// then get parsed as int64s.
    				"type(self.val7) == double": 4,
    				"self.val7 == 1.0":          3,
    			},
    		},
    		{name: "numeric comparisons",
    			obj: objs(
    				int64(5),      // val1, integer type, integer value
    				float64(10.0), // val4, number type, parsed from decimal literal
    				float64(10.0), // val5, float type, parsed from decimal literal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    }
                }
            """
    
            file("testlib/build.gradle") << """
                dependencies {
                    api project(':common') // cycle causes resolution to fail, but shouldn't
                }
            """
    
            file("common/build.gradle") << """
                dependencies {
                    testImplementation project(':testlib')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            List<Throwable> causes = new ArrayList<Throwable>()
            while (exception != null) {
                causes.add(exception)
                exception = exception.cause
            }
            assertThat(causes, CoreMatchers.hasItem(hasMessage(startsWith(message))))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                return null;
            }
        }
    
        private static List<Failure> toFailures(List<? extends InternalFailure> causes) {
            if (causes == null) {
                return null;
            }
            List<Failure> failures = new ArrayList<>();
            for (InternalFailure cause : causes) {
                failures.add(toFailure(cause));
            }
            return failures;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                throws IOException, XMLStreamException {
            CoreExtensionsStaxReader parser = new CoreExtensionsStaxReader();
    
            try (InputStream is = Files.newInputStream(extensionsFile.toPath())) {
                return parser.read(is, true).getExtensions();
            }
        }
    
        private ClassRealm setupContainerRealm(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    // s_client` process.
    type opensslInputEvent int
    
    const (
    	// opensslRenegotiate causes OpenSSL to request a renegotiation of the
    	// connection.
    	opensslRenegotiate opensslInputEvent = iota
    
    	// opensslSendBanner causes OpenSSL to send the contents of
    	// opensslSentinel on the connection.
    	opensslSendSentinel
    
    	// opensslKeyUpdate causes OpenSSL to send a key update message to the
    	// client and request one back.
    	opensslKeyUpdate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// WhenDeleted specifies what happens to PVCs created from StatefulSet
    	// VolumeClaimTemplates when the StatefulSet is deleted. The default policy
    	// of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
    	// `Delete` policy causes those PVCs to be deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

    			if opt.Scheme != scheme.TCP {
    				return
    			}
    			// Ensure we don't get stuck on old connections with old RBAC rules. This causes 45s test times
    			// due to draining.
    			opt.NewConnectionPerRequest = true
    
    			t.NewSubTest("permissive").Run(func(t framework.TestContext) {
    				t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top