Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for exportId (0.28 sec)

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

            "arguments.");
        return {};
      }
      // Exported method name.
      auto exported_name =
          main_op->getAttrOfType<mlir::ArrayAttr>(kTfSavedModelExportedNamesAttr);
      if (exported_name.empty()) {
        main_op.emitError("Empty exported names for main Function.");
        return {};
      }
      // Fill the SignatureDefData container.
    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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    openAPIV3Schema: properties: spec: description: 'Configuration affecting load balancing, outlier detection, etc. See more details at: https://istio.io/docs/reference/config/networking/destination-rule.html' properties: exportTo: description: A list of namespaces to which this destination rule is exported. items: type: string type: array host: description: The name of a service from the service registry. type: string subsets: description: One or more named sets that represent individual versions of a service....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	return Value{v.typ(), v.ptr, fl}
    }
    
    // NumMethod returns the number of methods in the value's method set.
    //
    // For a non-interface type, it returns the number of exported methods.
    //
    // For an interface type, it returns the number of exported and unexported methods.
    func (v Value) NumMethod() int {
    	if v.typ() == nil {
    		panic(&ValueError{"reflect.Value.NumMethod", Invalid})
    	}
    	if v.flag&flagMethod != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	ForTest       string                `json:",omitempty"` // package is only for use in named test
    	Export        string                `json:",omitempty"` // file containing export data (set by go list -export)
    	BuildID       string                `json:",omitempty"` // build ID of the compiled package (set by go list -export)
    	Module        *modinfo.ModulePublic `json:",omitempty"` // info about package's module, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def PrepareTpuComputationForTfExportPass : Pass<"prepare-tpu-computation-for-tf-export", "ModuleOp"> {
      let summary = "Prepare TPU computation to be legal for export to TensorFlow";
      let description = [{
        Prepares TPU computation module attached to _TPUCompileMlir op for
        TensorFlow graph export by making transformation such as replacing or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        Note #1, this Op will not include TF Lite custom ops defined using CustomOp.
        Note #2, this op is just internal representation inside the converter and
        are not exposed/exported when the model is exported to Flatbuffer.
      }];
    
      let arguments = (ins
        Variadic<TFL_TensorOfOrNone<[AnyType]>>:$input
      );
      let results = (outs Variadic<AnyTensor>:$output);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

        tls:
          mode: SIMPLE
          insecureSkipVerify: true
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: alt-external-service
    spec:
      exportTo: [.]
      hosts:
      - %s
      resolution: NONE
      ports:
      - name: http-tls-origination
        number: 8888
        protocol: http
        targetPort: 443
      - name: http2-tls-origination
        number: 8882
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    LogicalResult EmptyTensorListOp::verify() {
      EmptyTensorListOp op = *this;
      // This is required to populate derived attributes during export in a
      // meaningful way. Else during export to GraphDef element_type() query
      // will result in out of bounds access/assert.
      if (handle_dtype().getSubtypes().size() != 1) {
        return emitOpError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    /*! UIkit 3.3.2 | http://www.getuikit.com | (c) 2014 - 2019 YOOtheme | MIT License */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		systemstack(entersyscall_gcwait)
    		save(pc, sp, bp)
    	}
    
    	gp.m.locks--
    }
    
    // Standard syscall entry used by the go syscall library and normal cgo calls.
    //
    // This is exported via linkname to assembly in the syscall package and x/sys.
    //
    // Other packages should not be accessing entersyscall directly,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top