Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 128 for componentX (0.36 sec)

  1. src/cmd/compile/internal/types/type.go

    		}
    		return n
    	case TARRAY:
    		return t.NumElem() * t.Elem().NumComponents(countBlank)
    	}
    	return 1
    }
    
    // SoleComponent returns the only primitive component in t,
    // if there is exactly one. Otherwise, it returns nil.
    // Components are counted as in NumComponents, including blank fields.
    // Keep in sync with cmd/compile/internal/walk/convert.go:soleComponent.
    func (t *Type) SoleComponent() *Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    This is effectively the reporting produced by the link:https://maven.apache.org/components/surefire/maven-surefire-plugin/examples/rerun-failing-tests.html[surefire plugin of Apache Maven™] when enabling reruns.
    If your CI server understands this format, it will indicate that the test was flaky.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// If the finalizer list is processed in order, then this can lead to a situation
    	// in which the component responsible for the first finalizer in the list is
    	// waiting for a signal (field value, external system, or other) produced by a
    	// component responsible for a finalizer later in the list, resulting in a deadlock.
    	// Without enforced ordering finalizers are free to order amongst themselves and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	kmsservice "k8s.io/kms/pkg/service"
    	"k8s.io/utils/pointer"
    )
    
    const (
    	sampleText        = "abcdefghijklmnopqrstuvwxyz"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    			var arch, subarch, os string
    			switch {
    			case archspec[2] != "": // 3 components: "linux/386/sse2"
    				os, arch, subarch = archspec[0], archspec[1][1:], archspec[2][1:]
    			case archspec[1] != "": // 2 components: "386/sse2"
    				os, arch, subarch = "linux", archspec[0], archspec[1][1:]
    			default: // 1 component: "386"
    				os, arch, subarch = "linux", archspec[0], ""
    				if arch == "wasm" {
    					os = "js"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/informers"
    	clientset "k8s.io/client-go/kubernetes"
    	restclient "k8s.io/client-go/rest"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/component-helpers/scheduling/corev1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/parallelize"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    func (defaultStorageMetadata) ProducesObject(verb string) interface{} {
    	return nil
    }
    
    // splitSubresource checks if the given storage path is the path of a subresource and returns
    // the resource and subresource components.
    func splitSubresource(path string) (string, string, error) {
    	var resource, subresource string
    	switch parts := strings.Split(path, "/"); len(parts) {
    	case 2:
    		resource, subresource = parts[0], parts[1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

        # Create kubeconfigs for all components, using client certs
        kube::util::write_client_kubeconfig "${CONTROLPLANE_SUDO}" "${CERT_DIR}" "${ROOT_CA_FILE}" "${API_HOST}" "${API_SECURE_PORT}" admin
        ${CONTROLPLANE_SUDO} chown "${USER}" "${CERT_DIR}/client-admin.key" # make readable for kubectl
    
        # Wait for kube-apiserver to come up before launching the rest of the components.
        echo "Waiting for apiserver to come up"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.components
    
    import org.jetbrains.kotlin.KtFakeSourceElementKind
    import org.jetbrains.kotlin.analysis.api.diagnostics.KaDiagnostic
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top