Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for mdtext (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning_test.go

    			args:   []args{{agent: "myagent", text: "mytext"}},
    			expect: []string{`299 myagent "mytext"`},
    		},
    		{
    			name: "duplicate text",
    			args: []args{
    				{agent: "myagent", text: "mytext"},
    				{agent: "myagent2", text: "mytext"},
    			},
    			expect: []string{`299 myagent "mytext"`},
    		},
    		{
    			name: "multiple",
    			args: []args{
    				{agent: "", text: "mytext1"},
    				{agent: "", text: "mytext2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 4K bytes
    - Viewed (0)
  2. src/net/mail/message.go

    		}
    
    		dtext += p.s[:size]
    		p.s = p.s[size:]
    	}
    
    	// Skip the trailing ]
    	if !p.consume(']') {
    		return "", errors.New("mail: unclosed domain-literal")
    	}
    
    	// Check if the domain literal is an IP address
    	if net.ParseIP(dtext) == nil {
    		return "", fmt.Errorf("mail: invalid IP address in domain-literal: %q", dtext)
    	}
    
    	return "[" + dtext + "]", nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		// _text or _stext. When profiles are generated by `perf`, which one was used is
    		// distinguished by the mapping name for the kernel image:
    		// '[kernel.kallsyms]_text' or '[kernel.kallsyms]_stext', respectively. If we haven't
    		// been able to parse it from the mapping, we default to _stext.
    		if relocationSymbol == "" {
    			relocationSymbol = "_stext"
    		}
    		for _, s := range symbols {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

    // RUN: tf-opt -tfl-prepare-composite-funcs-tf="fuse-tftext=true" %s | FileCheck %s
    
    func.func private @whitespace_tokenizer_rank1(%arg0: tensor<1x!tf_type.string> {tf._user_specified_name = "input"}) -> (tensor<?x!tf_type.string>, tensor<?xi64>) attributes {tf._input_shapes = [#tf_type.shape<1>], tf._implements = #tf_type.func<@"tftext:WhitespaceTokenizer", {}>, tf.signature.is_stateful} {
      %0 = "tf.Const"() {value = dense<[0, 1]> : tensor<2xi64>} : () -> tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/toolchain/path_windows.go

    	pathExts.once.Do(initPathExts)
    	name, _, ok := cutExt(de.Name(), pathExts.list)
    	if !ok {
    		return "", false
    	}
    	v := gover.FromToolchain(name)
    	if v == "" {
    		return "", false
    	}
    	return v, true
    }
    
    // cutExt looks for any of the known extensions at the end of file.
    // If one is found, cutExt returns the file name with the extension trimmed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/os/exec/internal/fdtest/exists_unix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix || wasm
    
    // Package fdtest provides test helpers for working with file descriptors across exec.
    package fdtest
    
    import (
    	"syscall"
    )
    
    // Exists returns true if fd is a valid file descriptor.
    func Exists(fd uintptr) bool {
    	var s syscall.Stat_t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 487 bytes
    - Viewed (0)
  7. src/debug/macho/file_test.go

    		},
    		[]*SectionHeader{
    			{"__text", "__TEXT", 0x100000f14, 0x6d, 0xf14, 0x2, 0x0, 0x0, 0x80000400},
    			{"__symbol_stub1", "__TEXT", 0x100000f81, 0xc, 0xf81, 0x0, 0x0, 0x0, 0x80000408},
    			{"__stub_helper", "__TEXT", 0x100000f90, 0x18, 0xf90, 0x2, 0x0, 0x0, 0x0},
    			{"__cstring", "__TEXT", 0x100000fa8, 0xd, 0xfa8, 0x0, 0x0, 0x0, 0x2},
    			{"__eh_frame", "__TEXT", 0x100000fb8, 0x48, 0xfb8, 0x3, 0x0, 0x0, 0x6000000b},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/lockedfile/mutex.go

    }
    
    // MutexAt returns a new Mutex with Path set to the given non-empty path.
    func MutexAt(path string) *Mutex {
    	if path == "" {
    		panic("lockedfile.MutexAt: path must be non-empty")
    	}
    	return &Mutex{Path: path}
    }
    
    func (mu *Mutex) String() string {
    	return fmt.Sprintf("lockedfile.Mutex(%s)", mu.Path)
    }
    
    // Lock attempts to lock the Mutex.
    //
    // If successful, Lock returns a non-nil unlock function: it is provided as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 17:17:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/internal/objfile/macho.go

    		}
    	}
    	return textStart, symtab, pclntab, nil
    }
    
    func (f *machoFile) text() (textStart uint64, text []byte, err error) {
    	sect := f.macho.Section("__text")
    	if sect == nil {
    		return 0, nil, fmt.Errorf("text section not found")
    	}
    	textStart = sect.Addr
    	text, err = sect.Data()
    	return
    }
    
    func (f *machoFile) goarch() string {
    	switch f.macho.Cpu {
    	case macho.Cpu386:
    		return "386"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProcessOutputProviderIntegrationTest.groovy

                    }
                }
                tasks.register("printScriptOutput", MyTask) {
                    scriptOutput = execProvider.standardOutput.asText
                }
            """
    
            when:
            run("-q", ":printScriptOutput")
    
            // Overwrite script file with a new text
            ShellScript.builder().printText("Other script output").writeTo(testDirectory, testScriptName)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top