Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,052 for exportId (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/go/doc/testdata/predeclared.go

    // Copyright 2016 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.
    
    // Package predeclared is a go/doc test for handling of
    // exported methods on locally-defined predeclared types.
    // See issue 9860.
    package predeclared
    
    type error struct{}
    
    // Must not be visible.
    func (e error) Error() string {
    	return ""
    }
    
    type bool int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 00:35:30 UTC 2016
    - 489 bytes
    - Viewed (0)
  8. src/go/doc/testdata/g.go

    // Copyright 2018 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.
    
    // The package g is a go/doc test for mixed exported/unexported values.
    package g
    
    const (
    	A, b = iota, iota
    	c, D
    	E, f
    	G, H
    )
    
    var (
    	c1, C2, c3 = 1, 2, 3
    	C4, c5, C6 = 4, 5, 6
    	c7, C8, c9 = 7, 8, 9
    	xx, yy, zz = 0, 0, 0 // all unexported and hidden
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:29:17 UTC 2018
    - 449 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top