Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for Tstring (0.19 sec)

  1. src/html/escape_test.go

    package html
    
    import (
    	"strings"
    	"testing"
    )
    
    type unescapeTest struct {
    	// A short description of the test case.
    	desc string
    	// The HTML text.
    	html string
    	// The unescaped text.
    	unescaped string
    }
    
    var unescapeTests = []unescapeTest{
    	// Handle no entities.
    	{
    		"copy",
    		"A\ttext\nstring",
    		"A\ttext\nstring",
    	},
    	// Handle simple named entities.
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 22 12:45:38 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	{struct{ x ([]int8) }{}, "[]int8"},
    	{struct{ x (map[string]int32) }{}, "map[string]int32"},
    	{struct{ x (chan<- string) }{}, "chan<- string"},
    	{struct{ x (chan<- chan string) }{}, "chan<- chan string"},
    	{struct{ x (chan<- <-chan string) }{}, "chan<- <-chan string"},
    	{struct{ x (<-chan <-chan string) }{}, "<-chan <-chan string"},
    	{struct{ x (chan (<-chan string)) }{}, "chan (<-chan string)"},
    	{struct {
    		x struct {
    			c chan *int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_plan9.go

    }
    
    //sys	bind(name string, old string, flag int) (err error)
    
    func Bind(name string, old string, flag int) (err error) {
    	if fixwd(name, old) {
    		defer runtime.UnlockOSThread()
    	}
    	return bind(name, old, flag)
    }
    
    //sys	mount(fd int, afd int, old string, flag int, aname string) (err error)
    
    func Mount(fd int, afd int, old string, flag int, aname string) (err error) {
    	if fixwd(old) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/fix/jnitype.go

    // This fix finds nils initializing these types and replaces the nils with 0s.
    func jnifix(f *ast.File) bool {
    	return typefix(f, func(s string) bool {
    		switch s {
    		case "C.jobject":
    			return true
    		case "C.jclass":
    			return true
    		case "C.jthrowable":
    			return true
    		case "C.jstring":
    			return true
    		case "C.jarray":
    			return true
    		case "C.jbooleanArray":
    			return true
    		case "C.jbyteArray":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/test/groovy/org/gradle/internal/typeconversion/CharSequenceNotationConverterTest.groovy

            when:
            converter.convert(value, result)
    
            then:
            1 * target.convert("12", result)
    
            where:
            type          | value
            String        | "12"
            StringBuilder | new StringBuilder("12")
            GString       | "${6 * 2}"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

            where:
            type            | value                                                                | display
            "String"        | '["a", "b", "c"]'                                                    | '[a, b, c]'
            "Param<String>" | '[new Param<String>(display: "a"), new Param<String>(display: "b")]' | '[a, b]'
        }
    
        def "can finalize the value of a property using API"() {
            given:
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. tensorflow/c/tf_buffer.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/tf_buffer.h"
    
    #include <cstddef>
    #include <cstdint>
    #include <cstring>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mem.h"
    #include "tensorflow/core/platform/protobuf.h"  // IWYU pragma: keep
    #include "tensorflow/core/platform/status.h"
    
    extern "C" {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/sym/symkind_string.go

    func (i SymKind) String() string {
    	if i >= SymKind(len(_SymKind_index)-1) {
    		return "SymKind(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    	return _SymKind_name[_SymKind_index[i]:_SymKind_index[i+1]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/crash.go

    func (s exampleStringer) String() string {
    	panic("important multi-line\nstringer message")
    }
    
    func StringerPanic() {
    	panic(exampleStringer{})
    }
    
    type examplePanicStringer struct{}
    
    func (s examplePanicStringer) String() string {
    	panic(exampleStringer{})
    }
    
    func DoubleStringerPanic() {
    	panic(examplePanicStringer{})
    }
    
    func StringPanic() {
    	panic("important multi-line\nstring message")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    }
    
    // Overloads for ::wstring and ::std::wstring.
    #if GTEST_HAS_GLOBAL_WSTRING
    GTEST_API_ void PrintWideStringTo(const ::wstring&s, ::std::ostream* os);
    inline void PrintTo(const ::wstring& s, ::std::ostream* os) {
      PrintWideStringTo(s, os);
    }
    #endif  // GTEST_HAS_GLOBAL_WSTRING
    
    #if GTEST_HAS_STD_WSTRING
    GTEST_API_ void PrintWideStringTo(const ::std::wstring&s, ::std::ostream* os);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
Back to top