Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 806 for exportId (0.13 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 44956: writable static temp is not exported correctly.
    // In the test below, package base is
    //
    //     X = &map{...}
    //
    // which compiles to
    //
    //     X = &stmp           // static
    //     stmp = makemap(...) // in init function
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tracing.go

    		// The Dynatrace sampler can re-use the same Dynatrace service/cluster/headers
    		// as configured for the HTTP Exporter. In this case users
    		// can achieve a much smaller/simpler config in Istio.
    
    		// Re-use the Dynatrace API Host from the OTLP HTTP exporter
    		otlpHTTPService := otelProvider.GetHttp()
    		if otlpHTTPService == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue8148.go

    // license that can be found in the LICENSE file.
    
    // Issue 8148.  A typedef of an unnamed struct didn't work when used
    // with an exported Go function.  No runtime test; just make sure it
    // compiles.
    
    package cgotest
    
    /*
    typedef struct { int i; } T;
    int get8148(void);
    */
    import "C"
    
    //export issue8148Callback
    func issue8148Callback(t *C.T) C.int {
    	return t.i
    }
    
    func Issue8148() int {
    	return int(C.get8148())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 526 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/call_to_exported.py

    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
        self.v = tf.Variable(42.0)
    
      # We guarantee that there are no calls to exported functions from inside the
      # module.
      #
      # If there is a call to an exported function, we create a wrapper function
      # that forwards to the other function and put the tf_saved_model attributes on
      # the wrapper.
      #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 28 19:09:38 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/image_format/README.md

    `experimental_image_format` option:
    
    ```
    tf.savedmodel.save(
        model, path,
        options=tf.saved_model.SaveOptions(experimental_image_format=True)
    )
    ```
    
    When this option is enabled, exported SavedModels with proto size > 2GB will
    automatically save with the new format (`.cpb` instead of `.pb`).
    
    <!-- **Compatibility** -->
    
    The official TF APIs (TF1/TF2 python or C++ loading) have already been
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 22:11:19 UTC 2023
    - 674 bytes
    - Viewed (0)
  6. cni/pkg/monitoring/monitoring.go

    		log.Errorf("unable to listen on socket: %v", err)
    		return
    	}
    	exporter, err := monitoring.RegisterPrometheusExporter(nil, nil)
    	if err != nil {
    		log.Errorf("could not set up prometheus exporter: %v", err)
    		return
    	}
    	mux.Handle(path, exporter)
    	monitoringServer := &http.Server{
    		Handler: mux,
    	}
    	go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/ArtifactFilterManager.java

    public interface ArtifactFilterManager {
        /**
         * Returns a filter for core + extension artifacts.
         *
         * @return the artifact filter
         * @deprecated use {@code META-INF/maven/extension.xml} to define artifacts exported by Maven core and plugin
         *             extensions.
         */
        ArtifactFilter getArtifactFilter();
    
        /**
         * Returns a filter for only the core artifacts.
         *
         * @return the artifact filter
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

          },
          R"pbdoc(
            Converts a TensorFlow SavedModel into StableHLO bytecode.
    
            * input-path: The path to the input TensorFlow SavedModel.
            * exported-model-signatures: Comma-separated list of exported model
              signatures to convert.
            * tag_names: Comma-separated list of tags for loading SavedModel.
            * input-arg-shapes: A string representation of input argument shapes for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

        --input-path=/path/to/model \
        [--exported-model-signatures=signature1,signature2] \
        [--tag-names=tag1,tag2] \
        [--input-arg-shapes-str=arg-name:shape,...] \
        [--e] \
        [--output-filename=/path/to/output.mlir]
    ```
    
    * `--input-path`: The path to the input TensorFlow SavedModel or MLIR module
      with .mlir extension.
    * `--exported-model-signatures`: Comma-separated list of exported model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ide/idea/groovy/build.gradle

            project.modulePaths.clear()
        }
    }
    // end::project-before-merged[]
    
    
    // tag::module-when-merged[]
    idea.module.iml {
        whenMerged { module ->
            module.dependencies*.exported = true
        }
    }
    // end::module-when-merged[]
    
    // tag::project-with-xml[]
    idea.project.ipr {
        withXml { provider ->
            provider.node.component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 777 bytes
    - Viewed (0)
Back to top