Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for Trailing (0.75 sec)

  1. cmd/xl-storage.go

    		default:
    			return err
    		}
    	}
    	return nil
    }
    
    // ListDir - return all the entries at the given directory path.
    // If an entry is a directory it will be returned with a trailing SlashSeparator.
    func (s *xlStorage) ListDir(ctx context.Context, origvolume, volume, dirPath string, count int) (entries []string, err error) {
    	if contextCanceled(ctx) {
    		return nil, ctx.Err()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		tp = *match.Path.Type
    	}
    	dest := "/"
    	if match.Path.Value != nil {
    		dest = *match.Path.Value
    	}
    	switch tp {
    	case k8s.PathMatchPathPrefix:
    		// "When specified, a trailing `/` is ignored."
    		if dest != "/" {
    			dest = strings.TrimSuffix(dest, "/")
    		}
    		return &istio.StringMatch{
    			MatchType: &istio.StringMatch_Prefix{Prefix: dest},
    		}, nil
    	case k8s.PathMatchExact:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    		defer f.Close()
    		if *dynlinker {
    			// Emit the cgo_dynamic_linker line.
    			if sec := f.Section(".interp"); sec != nil {
    				if data, err := sec.Data(); err == nil && len(data) > 1 {
    					// skip trailing \0 in data
    					fmt.Fprintf(stdout, "//go:cgo_dynamic_linker %q\n", string(data[:len(data)-1]))
    				}
    			}
    		}
    		sym := elfImportedSymbols(f)
    		for _, s := range sym {
    			targ := s.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    		{"", true}, // will be rejected earlier too
    
    		// Without stuff before onion/local, they're fine to
    		// use DNS. With a search path,
    		// "onion.vegetables.com" can use DNS. Without a
    		// search path (or with a trailing dot), the queries
    		// are just kinda useless, but don't reveal anything
    		// private.
    		{"local", false},
    		{"onion", false},
    		{"local.", false},
    		{"onion.", false},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm.s

    	ADD	R1<<R2, R3, R4
    	ADD	R1>>R2, R3, R4
    	ADD	R1@>R2, R3, R4
    	ADD	R1->R2, R3, R4
    	ADD	R1, R2, R3
    	ADD	R(1)<<R(2), R(3), R(4) // ADD	R1<<R2, R3, R4
    
    //	LTYPE1 cond imsr ',' spreg ',' // asm doesn't support trailing comma.
    //	{
    //		outcode($1, $2, &$3, $5, &nullgen);
    //	}
    //	LTYPE1 cond imsr ',' reg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	ADD	$1, R2
    	ADD	R1<<R2, R3
    	ADD	R1>>R2, R3
    	ADD	R1@>R2, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    	versions []module.Version
    
    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    	// pathPrefix is the path prefix for packages in the module, without a trailing
    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	if n > 0 {
    		sl += int32(n) + 1
    	}
    	if sa.raw.Path[0] == '@' || (sa.raw.Path[0] == 0 && sl > 3) {
    		// Check sl > 3 so we don't change unnamed socket behavior.
    		sa.raw.Path[0] = 0
    		// Don't count trailing NUL for abstract address.
    		sl--
    	}
    
    	return unsafe.Pointer(&sa.raw), sl, nil
    }
    
    type RawSockaddrBth struct {
    	AddressFamily  [2]byte
    	BtAddr         [8]byte
    	ServiceClassId [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (n *Name) pack(msg []byte, compression map[string]uint16, compressionOff int) ([]byte, error) {
    	oldMsg := msg
    
    	if n.Length > nonEncodedNameMax {
    		return nil, errNameTooLong
    	}
    
    	// Add a trailing dot to canonicalize name.
    	if n.Length == 0 || n.Data[n.Length-1] != '.' {
    		return oldMsg, errNonCanonicalName
    	}
    
    	// Allow root domain.
    	if n.Data[0] == '.' && n.Length == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    of the function, constant, or variable Xxx. An example of a method M with
    receiver type T or *T is named ExampleT_M. There may be multiple examples
    for a given function, constant, or variable, distinguished by a trailing _xxx,
    where xxx is a suffix not beginning with an upper case letter.
    
    Here is an example of an example:
    
    	func ExamplePrintln() {
    		Println("The output of\nthis example.")
    		// Output: The output of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Fix PVC.Status.Capacity and AccessModes after binding ([#29982](https://github.com/kubernetes/kubernetes/pull/29982), [@jsafrane](https://github.com/jsafrane))
    * oidc authentication plugin: don't trim issuer URLs with trailing slashes ([#29860](https://github.com/kubernetes/kubernetes/pull/29860), [@ericchiang](https://github.com/ericchiang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top