Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Gotype (0.16 sec)

  1. src/cmd/link/internal/ld/data.go

    func addstrdata(arch *sys.Arch, l *loader.Loader, name, value string) {
    	s := l.Lookup(name, 0)
    	if s == 0 {
    		return
    	}
    	if goType := l.SymGoType(s); goType == 0 {
    		return
    	} else if typeName := l.SymName(goType); typeName != "type:string" {
    		Errorf(nil, "%s: cannot set with -X: not a var of type string (%s)", name, typeName)
    		return
    	}
    	if !l.AttrReachable(s) {
    		return // don't bother setting unreachable variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_0 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
                'f4'
            )
    
            self.filters_1 = np.random.uniform(
                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_1 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
                'f4'
            )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

          T41, T42, T43, T44, T45, T46, T47, T48, T49> type;
    };
    
    namespace internal {
    
    # define GTEST_TEMPLATE_ template <typename T> class
    
    // The template "selector" struct TemplateSel<Tmpl> is used to
    // represent Tmpl, which must be a class template with one type
    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

          T41, T42, T43, T44, T45, T46, T47, T48, T49> type;
    };
    
    namespace internal {
    
    # define GTEST_TEMPLATE_ template <typename T> class
    
    // The template "selector" struct TemplateSel<Tmpl> is used to
    // represent Tmpl, which must be a class template with one type
    // parameter, as a type.  TemplateSel<Tmpl>::Bind<T>::type is defined
    // as the type Tmpl<T>.  This allows us to actually instantiate the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // As in Go, x's value must be assignable to the channel's element type.
    func (v Value) TrySend(x Value) bool {
    	v.mustBe(Chan)
    	v.mustBeExported()
    	return v.send(x, true)
    }
    
    // Type returns v's type.
    func (v Value) Type() Type {
    	if v.flag != 0 && v.flag&flagMethod == 0 {
    		return (*rtype)(noescape(unsafe.Pointer(v.typ_))) // inline of toRType(v.typ()), for own inlining in inline test
    	}
    	return v.typeSlow()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    				}
    				if !strings.Contains(got, "Content-Type: some/type") {
    					return errors.New("wrong content-type")
    				}
    				return nil
    			},
    		},
    		{
    			name: "sniff-on-first-write content-type",
    			handler: func(rw ResponseWriter, r *Request) {
    				rw.Write([]byte("<html><head></head><body>some html</body></html>"))
    				rw.Header().Set("Content-Type", "x/wrong")
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/bootstrap.min.js.map

    const value         = config[property]\n        const valueType     = value && Util.isElement(value)\n          ? 'element' : toType(value)\n\n        if (!new RegExp(expectedTypes).test(valueType)) {\n          throw new Error(\n            `${componentName.toUpperCase()}: ` +\n            `Option \"${property}\" provided type \"${valueType}\" ` +\n            `but expected type \"${expectedTypes}\".`)\n        }\n      }\n    }\n  },\n\n  findShadowRoot(element) {\n    if (!document.documentElement.attachShadow)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	same = r0 != 0
    	return
    }
    
    func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    	var _p0 *uint16
    	_p0, status = syscall.UTF16PtrFromString(name)
    	if status != nil {
    		return
    	}
    	return _DnsQuery(_p0, qtype, options, extra, qrs, pr)
    }
    
    func _DnsQuery(name *uint16, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. src/main/webapp/js/bootstrap.min.js.map

    const value         = config[property]\n        const valueType     = value && Util.isElement(value)\n          ? 'element' : toType(value)\n\n        if (!new RegExp(expectedTypes).test(valueType)) {\n          throw new Error(\n            `${componentName.toUpperCase()}: ` +\n            `Option \"${property}\" provided type \"${valueType}\" ` +\n            `but expected type \"${expectedTypes}\".`)\n        }\n      }\n    }\n  },\n\n  findShadowRoot(element) {\n    if (!document.documentElement.attachShadow)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    class PrettyPrintXMLWriter implements XMLWriter { private java.io.PrintWriter writer; private java.util.LinkedList elementStack; private boolean tagInProgress; private int depth; private String lineIndenter; private String encoding; private String docType; private boolean readyForNewLine; private boolean tagIsEmpty; public void PrettyPrintXMLWriter(java.io.PrintWriter, String); public void PrettyPrintXMLWriter(java.io.Writer, String); public void PrettyPrintXMLWriter(java.io.PrintWriter); public void...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
Back to top