Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 806 for exportId (0.11 sec)

  1. ci/official/README.md

        `TFCI` env param pointing to a list of `env` files.
    2.  `utilities/setup.sh`, initialized by all top-level scripts, reads and sets
        values from those `TFCI` paths.
        -   `set -a` / `set -o allexport` exports the variables from `env` files so
            all scripts can use them.
        -   `utilities/setup_docker.sh` creates a container called `tf` with all
            `TFCI_` variables shared to it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/ptr_test.go

    		fail:      true,
    		expensive: true,
    	},
    	{
    		// Exported functions may not return Go pointers.
    		name: "export1",
    		c: `#ifdef _WIN32
    		    __declspec(dllexport)
    			#endif
    		    extern unsigned char *GoFn21();`,
    		support: `//export GoFn21
    		          func GoFn21() *byte { return new(byte) }`,
    		body: `C.GoFn21()`,
    		fail: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

        TF_ASSIGN_OR_RETURN(
            const auto representative_dataset_file_map,
            CreateRepresentativeDatasetFileMap(dataset_config_vector));
    
        // Run calibration on the exported model.
        if (py_function_lib_->RunCalibration(
                calibration_saved_model_dir, signature_keys_, tags_,
                /*force_graph_mode_calibration=*/true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/method/main.go

    // Copyright 2020 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 42579: methods of symbols exported from plugin must be live.
    
    package main
    
    import (
    	"plugin"
    	"reflect"
    )
    
    func main() {
    	p, err := plugin.Open("plugin.so")
    	if err != nil {
    		panic(err)
    	}
    
    	x, err := p.Lookup("X")
    	if err != nil {
    		panic(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 478 bytes
    - Viewed (0)
  5. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarDelegate.java

         */
        public String getImportVocab() {
            return importVocab;
        }
    
        /**
         * Retrieves the name of this vocabulary exported by this grammar.
         *
         * @return The grammar's exported vocabulary name.
         */
        public String getExportVocab() {
            return exportVocab;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

            "expresses argument shapes [1,2], [] and [1,?]"),
        llvm::cl::Optional, llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> exported_model_signatures(
        "exported-model-signatures",
        llvm::cl::desc(
            "Comma-separated list of exported model signatures to convert"),
        llvm::cl::Optional, llvm::cl::init("serving_default"));
    
    // NOLINTNEXTLINE
    opt<std::string> tag_names(
        "tags",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/crypto/tls/prf.go

    // export requests.
    func noEKMBecauseNoEMS(label string, context []byte, length int) ([]byte, error) {
    	return nil, errors.New("crypto/tls: ExportKeyingMaterial is unavailable when neither TLS 1.3 nor Extended Master Secret are negotiated; override with GODEBUG=tlsunsafeekm=1")
    }
    
    // ekmFromMasterSecret generates exported keying material as defined in RFC 5705.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectDependencyTest.groovy

    import groovy.xml.XmlParser
    import spock.lang.Specification
    
    
    class ProjectDependencyTest extends Specification {
        final static String XML_TEXT = '''
                    <classpathentry kind="src" path="/test2" exported="true">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/wsstream/legacy.go

    //
    //	k8s.io/apimachinery/pkg/util/httpstream/wsstream
    package wsstream
    
    import apimachinerywsstream "k8s.io/apimachinery/pkg/util/httpstream/wsstream"
    
    // Aliases for all exported symbols previously in "conn.go"
    const (
    	ChannelWebSocketProtocol       = apimachinerywsstream.ChannelWebSocketProtocol
    	Base64ChannelWebSocketProtocol = apimachinerywsstream.Base64ChannelWebSocketProtocol
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	}
    	scope := pkg.Scope()
    
    	// 2. package-level object?
    	if scope.Lookup(obj.Name()) == obj {
    		// Only exported objects (and non-exported types) have a path.
    		// Non-exported types may be referenced by other objects.
    		if _, ok := obj.(*types.TypeName); !ok && !obj.Exported() {
    			return "", fmt.Errorf("no path for non-exported %v", obj)
    		}
    		return Path(obj.Name()), nil
    	}
    
    	// 3. Not a package-level object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top