Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,089 for Trailing (0.22 sec)

  1. src/net/http/responsewrite_test.go

    				"Connection: close\r\n" +
    				"Transfer-Encoding: chunked\r\n\r\n" +
    				"6\r\nabcdef\r\n0\r\n\r\n",
    		},
    
    		// Header value with a newline character (Issue 914).
    		// Also tests removal of leading and trailing whitespace.
    		{
    			Response{
    				StatusCode: 204,
    				ProtoMajor: 1,
    				ProtoMinor: 1,
    				Request:    dummyReq("GET"),
    				Header: Header{
    					"Foo": []string{" Bar\nBaz "},
    				},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

      let description = [{
        The ExecuteOp executes an operation on the specified device.
    
        Example:
          %res = tfrt_fallback_sync.executeop "some.op"(%arg) : 1
    
        Note that the trailing number indicates the number of results.
      }];
    
      let arguments = (ins
        Variadic<TFTensorType>,
        StrAttr:$node_def,
        I32Attr:$op_key
      );
    
      let results = (outs Variadic<TFTensorType>);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/link.go

    Trim:
    	for i > min {
    		switch s[i-1] {
    		case '?', '!', '.', ',', ':', '@', '_', '~':
    			// Trim certain trailing punctuation.
    			i--
    			continue Trim
    
    		case ')':
    			// Trim trailing unmatched (by count only) parens.
    			if paren < 0 {
    				for s[i-1] == ')' && paren < 0 {
    					paren++
    					i--
    				}
    				continue Trim
    			}
    
    		case ';':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. src/net/textproto/reader.go

    			return l, nil
    		}
    		line = append(line, l...)
    		if !more {
    			break
    		}
    	}
    	return line, nil
    }
    
    // ReadContinuedLine reads a possibly continued line from r,
    // eliding the final trailing ASCII white space.
    // Lines after the first are considered continuations if they
    // begin with a space or tab character. In the returned data,
    // continuation lines are separated from the previous line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/search/search.go

    		if (m.pattern == "std" || m.pattern == "cmd") && src != cfg.GOROOTsrc {
    			continue
    		}
    
    		// If the root itself is a symlink to a directory,
    		// we want to follow it (see https://go.dev/issue/50807).
    		// Add a trailing separator to force that to happen.
    		src = str.WithFilePathSeparator(filepath.Clean(src))
    		root := src
    		if m.pattern == "cmd" {
    			root += "cmd" + string(filepath.Separator)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/abiutils_test.go

    `)
    
    	abitest(t, ft, exp)
    }
    
    // TestABIUtilsEmptyFieldAtEndOfStruct is testing to make sure
    // the abi code is doing the right thing for struct types that have
    // a trailing zero-sized field (where the we need to add padding).
    func TestABIUtilsEmptyFieldAtEndOfStruct(t *testing.T) {
    	// type s struct { f1 [2]int64; f2 struct { } }
    	// type s2 struct { f1 [3]int16; f2 struct { } }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/test2json.go

    	bigFail = []byte("FAIL")
    
    	// printed by 'go test' along with an error if the test binary terminates
    	// with an error.
    	bigFailErrorPrefix = []byte("FAIL\t")
    
    	// an === NAME line with no test name, if trailing spaces are deleted
    	emptyName     = []byte("=== NAME")
    	emptyNameLine = []byte("=== NAME  \n")
    
    	updates = [][]byte{
    		[]byte("=== RUN   "),
    		[]byte("=== PAUSE "),
    		[]byte("=== CONT  "),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  8. src/strconv/ftoa.go

    // printed by the 'e', 'E', 'f', 'g', 'G', 'x', and 'X' formats.
    // For 'e', 'E', 'f', 'x', and 'X', it is the number of digits after the decimal point.
    // For 'g' and 'G' it is the maximum number of significant digits (trailing
    // zeros are removed).
    // The special precision -1 uses the smallest number of digits
    // necessary such that ParseFloat will return f exactly.
    func FormatFloat(f float64, fmt byte, prec, bitSize int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/ingress_test.go

    						Count: count,
    					},
    					path:       "/test",
    					prefixPath: "/prefix/should",
    				},
    				{
    					// Prefix /prefix/test/ should match path /prefix/test
    					name: "http-prefix-matches-without-trailing-backslash",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTP,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/prefix/test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    		if backingFilePath == path || backingFilePath == realPath {
    			return fmt.Sprintf("/dev/%s", filepath.Base(device)), nil
    		}
    	}
    
    	return "", errors.New(ErrDeviceNotFound)
    }
    
    // cleanPath remove any trailing substrings that are not part of the backing file path.
    func cleanBackingFilePath(path string) string {
    	// If the block device was deleted, the path will contain a "(deleted)" suffix
    	path = strings.TrimSpace(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top