Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for api_version (0.48 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                    vhlo_op.getApiVersion())
                    .getValue();
            int32_t api_version = 0;
            if (op_api_version ==
                mlir::vhlo::CustomCallApiVersionV1::API_VERSION_UNSPECIFIED)
              api_version = 0;
            if (op_api_version ==
                mlir::vhlo::CustomCallApiVersionV1::API_VERSION_ORIGINAL)
              api_version = 1;
            if (op_api_version ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    								type: string
    			`),
    			oldObj: mustUnstructured(`
    				subField:
    					apiVersion: v2
    					kind: Baz
    				list:	
    				- name: entry1
    				  apiVersion: v2
    				  kind: Baz
    				- name: entry2
    				  apiVersion: v3
    				  kind: Bar
    			`),
    			newObj: mustUnstructured(`
    				subField:
    					apiVersion: v2
    					kind: Baz
    					otherField: newValue
    				list:	
    				- name: entry1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    						ValueFrom: &v1.EnvVarSource{
    							FieldRef: &v1.ObjectFieldSelector{
    								APIVersion: "v1",
    								FieldPath:  "metadata.name",
    							},
    						},
    					},
    					{
    						Name: "POD_NAMESPACE",
    						ValueFrom: &v1.EnvVarSource{
    							FieldRef: &v1.ObjectFieldSelector{
    								APIVersion: "v1",
    								FieldPath:  "metadata.namespace",
    							},
    						},
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		changed           bool
    	}{
    		{
    			genericapirequest.RequestInfo{
    				APIGroup:   "extensions",
    				APIVersion: "v1beta1",
    			},
    			[]string{metav1.FinalizerOrphanDependents},
    			false,
    			true,
    		},
    		{
    			genericapirequest.RequestInfo{
    				APIGroup:   "apps",
    				APIVersion: "v1beta1",
    			},
    			[]string{metav1.FinalizerOrphanDependents},
    			false,
    			true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        cat <<EOF >/etc/srv/kubernetes/admission_controller_config.yaml
    apiVersion: apiserver.k8s.io/v1alpha1
    kind: AdmissionConfiguration
    plugins:
    EOF
    
        # Add resourcequota config to limit critical pods to kube-system by default
        cat <<EOF >>/etc/srv/kubernetes/admission_controller_config.yaml
    - name: "ResourceQuota"
      configuration:
        apiVersion: apiserver.config.k8s.io/v1
        kind: ResourceQuotaConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        if [[ "${GCI_VERSION}" == "cos"* ]] || [[ "${MASTER_IMAGE_FAMILY}" == "cos"* ]]; then
            DEFAULT_GCI_PROJECT=cos-cloud
        fi
        export MASTER_IMAGE_PROJECT=${KUBE_GCE_MASTER_PROJECT:-${DEFAULT_GCI_PROJECT}}
    
        # If the master image is not set, we use the latest image based on image
        # family.
        kube_master_image="${KUBE_GCE_MASTER_IMAGE:-${GCI_VERSION}}"
        if [[ -z "${kube_master_image}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    			}
    			// Make sure the ControllerRefs are correct.
    			for _, controllerRef := range fakePodControl.ControllerRefs {
    				if got, want := controllerRef.APIVersion, "batch/v1"; got != want {
    					t.Errorf("controllerRef.APIVersion = %q, want %q", got, want)
    				}
    				if got, want := controllerRef.Kind, "Job"; got != want {
    					t.Errorf("controllerRef.Kind = %q, want %q", got, want)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

    apiVersion: v1
    kind: ServiceAccount
    automountServiceAccountToken: false
    metadata:
      labels:
        helm.sh/chart: grafana-8.0.1
        app.kubernetes.io/name: grafana
        app.kubernetes.io/instance: grafana
        app.kubernetes.io/version: "11.0.0"
        app.kubernetes.io/managed-by: Helm
      name: grafana
      namespace: istio-system
    ---
    # Source: grafana/templates/configmap.yaml
    apiVersion: v1
    kind: ConfigMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val message: String
        }
    
        interface ApiNotAvailable : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = ApiNotAvailable::class
            val sinceKotlinVersion: ApiVersion
            val currentVersion: ApiVersion
        }
    
        interface UnresolvedReferenceWrongReceiver : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = UnresolvedReferenceWrongReceiver::class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.TypealiasExpansionDeprecation
    
    internal class ApiNotAvailableImpl(
        override val sinceKotlinVersion: ApiVersion,
        override val currentVersion: ApiVersion,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.ApiNotAvailable
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top