Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for some_name (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                    NodeDef* node) {
      const std::string& node_name = node->name();
      auto it = inputs.find(node_name);
    
      // Node is not an input.
      if (it == inputs.end()) return absl::OkStatus();
    
      if (HasNonPrimaryOutputInUse(graph_def, node_name)) {
        return errors::InvalidArgument(
            "LegacyFedInput node ", node->name(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              {{- else }}
                value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012
              {{- end }}
              - name: NODE_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.nodeName
              - name: POD_NAME
                valueFrom:
                  fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			valid:   true,
    			warning: true,
    		},
    		{
    			name:       "empty spec with non default name",
    			configName: someName,
    			in:         &security_beta.RequestAuthentication{},
    			valid:      true,
    		},
    		{
    			name:        "dry run annotation not supported",
    			configName:  someName,
    			annotations: map[string]string{"istio.io/dry-run": "true"},
    			in:          &security_beta.RequestAuthentication{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen.cc

    )";
        const tf2xla::Variable& var = config.variable(i - config.feed_size());
        rewrites.emplace_back("{{MAYBE_CONST}}", var.readonly() ? "const " : "");
        *methods += RewriteWithName(
            var.name().empty() ? var.node_name() : var.name(), code, rewrites);
      }
      return absl::OkStatus();
    }
    
    // Generate shape infos for args (inputs).
    Status GenArgShapeInfos(const xla::ProgramShapeProto& ps, string* infos) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      bool IsInCompsiteFunction(Operation* op) {
        func::FuncOp parent = op->getParentOfType<func::FuncOp>();
        if (!parent) return false;
    
        StringRef sym_name = parent.getSymName();
        return sym_name.starts_with(kQuantizedFuncPrefix) ||
               sym_name.starts_with(kCompositeFuncPrefix);
      }
    
      ModuleOp module_;
      SymbolTable symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              {{- else }}
                value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012
              {{- end }}
              - name: NODE_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.nodeName
              - name: POD_NAME
                valueFrom:
                  fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. docs/en/mkdocs.yml

    INHERIT: ../en/mkdocs.maybe-insiders.yml
    site_name: FastAPI
    site_description: FastAPI framework, high performance, easy to learn, fast to code, ready for production
    site_url: https://fastapi.tiangolo.com/
    theme:
      name: material
      custom_dir: ../en/overrides
      palette:
      - media: '(prefers-color-scheme: light)'
        scheme: default
        primary: teal
        accent: amber
        toggle:
          icon: material/lightbulb
          name: Switch to dark mode
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

          raise ValueError(
              'UnitWiseQuantizationSpec must contain at least one unit.'
          )
    
        for unit in unitwise_spec.unit:
          if not unit.op_type and not unit.node_name:
            raise ValueError('Either `op_type` or `node_name` must be specified.')
    
        _populate_quantization_component_spec(unitwise_spec.quantization_method)
    
        component_specs = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. cni/pkg/plugin/plugin_test.go

        "cni_event_address": "%s",
        "ambient_enabled": %t,
        "kubernetes": {
            "k8s_api_root": "APIRoot",
            "kubeconfig": "testK8sConfig",
    		"intercept_type": "%s",
            "node_name": "testNodeName",
            "exclude_namespaces": ["testExcludeNS"],
            "cni_bin_dir": "/testDirectory"
        }
    }`
    
    type mockInterceptRuleMgr struct {
    	lastRedirect []*Redirect
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. chainable_api.go

    //
    //	db.Joins("Account").Find(&user)
    //	db.Joins("JOIN emails ON emails.user_id = users.id AND emails.email = ?", "******@****.***").Find(&user)
    //	db.Joins("Account", DB.Select("id").Where("user_id = users.id AND name = ?", "someName").Model(&Account{}))
    func (db *DB) Joins(query string, args ...interface{}) (tx *DB) {
    	return joins(db, clause.LeftJoin, query, args...)
    }
    
    // InnerJoins specify inner joins conditions
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top