Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for some_name (0.22 sec)

  1. cmd/kubeadm/app/cmd/init_test.go

    apiVersion: %s
    kind: InitConfiguration
    localAPIEndpoint:
      advertiseAddress: "1.2.3.4"
    bootstrapTokens:
    - token: "abcdef.0123456789abcdef"
    nodeRegistration:
      criSocket: %s
      name: someName
      ignorePreflightErrors:
        - c
        - d
    ---
    apiVersion: %[1]s
    kind: ClusterConfiguration
    controlPlaneEndpoint: "3.4.5.6"
    `, kubeadmapiv1.SchemeGroupVersion.String(), expectedCRISocket)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

                quantization_unit.value().op_type() != unit.op_type()) {
              continue;
            }
    
            if (!unit.node_name().empty()) {
              const RE2 node_name_regex(unit.node_name());
              if (!RE2::FullMatch(quantization_unit.value().node_name(),
                                  node_name_regex)) {
                continue;
              }
            }
    
            if (!unit.func_name().empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args_test.cc

      }
      return {};
    }
    
    TEST_F(ConvertAssetArgsTest, ConvertsSingleAssetArg) {
      OwningOpRef<ModuleOp> module_op = ParseModuleOpString(R"mlir(
        module {
          "tf_saved_model.asset"() {filename = "assets/file_0.txt", sym_name = "__tf_saved_model_asset0"} : () -> ()
          func.func @main(%arg_0: tensor<!tf_type.string> {tf_saved_model.bound_input = @__tf_saved_model_asset0}) -> () attributes {tf.entry_function = {inputs = "arg_0:0", outputs = ""}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. cluster/addons/node-problem-detector/npd.yaml

            resources:
              limits:
                cpu: "200m"
                memory: "100Mi"
              requests:
                cpu: "20m"
                memory: "20Mi"
            env:
            - name: NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            volumeMounts:
            - name: log
              mountPath: /var/log
            - name: kmsg
              mountPath: /dev/kmsg
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. Jenkinsfile.s390x

            String stageLabel = "Run ITs ${os.capitalize()} Java ${jdk} on s390x"
            runITsTasks[stageId] = {
                node('s390x') {
                    stage("${stageLabel}") {
                        echo "NODE_NAME = ${env.NODE_NAME}"
                        // on Windows, need a short path or we hit 256 character limit for paths
                        // using EXECUTOR_NUMBER guarantees that concurrent builds on same agent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/join_test.go

        apiServerEndpoint: 1.2.3.4:6443
        unsafeSkipCAVerification: true
    controlPlane:
      certificateKey: c39a18bae4a72e71b178661f437363da218a3efb83ddb03f1cd91d9ae1da41bd
    nodeRegistration:
      criSocket: %s
      name: someName
      ignorePreflightErrors:
        - c
        - d
    `, kubeadmapiv1.SchemeGroupVersion.String(), expectedCRISocket)
    
    func TestNewJoinData(t *testing.T) {
    	// create temp directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/remove_init_variable_v1.py

    # it is being invoked.
    # CHECK: module
    # CHECK-SAME: tf.versions
    # CHECK-SAME: bad_consumers
    # CHECK-SAME: min_consumer
    # CHECK-SAME: producer
    
    # CHECK: "tf_saved_model.global_tensor"() <{is_mutable, sym_name = "[[VAR:[a-zA-Z_0-9]+]]", type = tensor<1x3xf32>, value = {{.*}} : tensor<1x3xf32>}> : () -> ()
    # CHECK-NOT: session_initializer
    
    # CHECK:      func {{@[a-zA-Z_0-9]+}}(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    // false, it stores a method of iface that is not implemented in *m. If the
    // method name matches but the type is wrong, it additionally stores the type
    // of the method (on t) in *samename.
    func implements(t, iface *types.Type, m, samename **types.Field, ptr *int) bool {
    	t0 := t
    	if t == nil {
    		return false
    	}
    
    	if t.IsInterface() {
    		i := 0
    		tms := t.AllMethods()
    		for _, im := range iface.AllMethods() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

      let arguments = (ins
        Arg<TF_Tensor>:$input,
    
        StrAttr:$log_dir_path,
        StrAttr:$file_name,
        BoolAttr:$enabled,
        StrAttr:$func_name,
        StrAttr:$node_name
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/config/validation/envoyfilter/envoyfilter_test.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// Config name for testing
    	someName = "foo"
    	// Config namespace for testing.
    	someNamespace = "bar"
    )
    
    func stringOrEmpty(v error) string {
    	if v == nil {
    		return ""
    	}
    	return v.Error()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top