Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 347 for api_version (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

        ],
        visibility = ["//visibility:public"],
    )
    
    # copybara:uncomment_begin(google-only)
    # py_proto_library(
    #     name = "quantization_options_py_pb2",
    #     api_version = 2,
    #     visibility = ["//visibility:public"],
    #     deps = [":quantization_options_proto"],
    # )
    # copybara:uncomment_end
    
    # OSS only: This target is header-only. Link `exported_model_proto_impl` only to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. samples/addons/kiali.yaml

            node: {}
            pod: {}
            pod_anti: {}
          configmap_annotations: {}
          custom_secrets: []
          dns:
            config: {}
            policy: ""
          host_aliases: []
          hpa:
            api_version: autoscaling/v2
            spec: {}
          image_digest: ""
          image_name: quay.io/kiali/kiali
          image_pull_policy: IfNotPresent
          image_pull_secrets: []
          image_version: v1.85
          ingress:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

        make_default_target_header_only = True,
        visibility = ["//visibility:public"],
    )
    
    # copybara:uncomment_begin(google-only)
    # py_proto_library(
    #     name = "quantization_options_py_pb2",
    #     api_version = 2,
    #     visibility = [":internal_visibility_allowlist_package"],
    #     deps = [":quantization_options_proto"],
    # )
    # copybara:uncomment_end
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

                .also { check(it.isNotEmpty()) }
                .sortedBy { it.path }
                .map { outputFile ->
                    val classReader = ClassReader(outputFile.content)
                    ClassNode(Opcodes.API_VERSION).also { classReader.accept(it, ClassReader.SKIP_CODE) }
                }
    
            val allClasses = classes.associateBy { Type.getObjectType(it.name) }
    
            return classes.joinToString("\n\n") { node ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        // STABLEHLO_CUSTOM_CALL definition
        attributes.emplace_back(builder.getNamedAttr(
            "api_version",
            mlir::vhlo::CustomCallApiVersionV1Attr::get(
                builder.getContext(),
                mlir::vhlo::symbolizeCustomCallApiVersionV1(op->api_version)
                    .value())));
        attributes.emplace_back(builder.getNamedAttr(
            "call_target_name",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table StablehloIotaOptions{
      iota_dimension : long;
    }
    
    table StablehloCustomCallOptions {
      call_target_name : string;
      has_side_effect : bool;
      backend_config: string;
      api_version : int; // will be decprecated
      called_computations: [int]; // should point to subgraphs of the computations
      custom_attributes : [ubyte];
    }
    
    table StablehloReduceOptions {
      dimensions : [long];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. pkg/controlplane/instance_test.go

    	// /api exists in release-1.1
    	resp, err := http.Get(server.URL + "/api")
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	apiVersions := metav1.APIVersions{}
    	assert.NoError(decodeResponse(resp, &apiVersions))
    	assert.Equal(apiVersions.APIVersion, "")
    
    	// /api/v1 exists in release-1.1
    	resp, err = http.Get(server.URL + "/api/v1")
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. samples/security/spire/spire-quickstart.yaml

      volumeLifecycleModes:
        - Ephemeral
    
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: spire-server
      namespace: spire
    
    ---
    # ConfigMap for spire-agent bootstrapping.
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: spire-bundle
      namespace: spire
    
    ---
    # ClusterRole to allow spire-server to query k8s API server.
    kind: ClusterRole
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. pkg/credentialprovider/plugin/plugin.go

    	data = stdout.Bytes()
    	// check that the response apiVersion matches what is expected
    	gvk, err := json.DefaultMetaFactory.Interpret(data)
    	if err != nil {
    		return nil, fmt.Errorf("error reading GVK from response: %w", err)
    	}
    
    	if gvk.GroupVersion().String() != e.apiVersion {
    		return nil, fmt.Errorf("apiVersion from credential plugin response did not match expected apiVersion:%s, actual apiVersion:%s", e.apiVersion, gvk.GroupVersion().String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go

    					Rule: v1.Rule{
    						APIGroups:   []string{"apps"},
    						APIVersions: []string{"v1"},
    						Resources:   []string{"deployments"},
    					},
    				},
    			},
    		}},
    	}}
    	paramsRefPolicy := &v1.ValidatingAdmissionPolicy{Spec: v1.ValidatingAdmissionPolicySpec{
    		ParamKind: &v1.ParamKind{
    			APIVersion: "v1",
    			Kind:       "DoesNotMatter",
    		},
    		Validations: []v1.Validation{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top