Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for Trailing (0.24 sec)

  1. src/net/netip/netip.go

    			}
    		}
    		if off == 0 {
    			// No digits found, fail.
    			return Addr{}, parseAddrError{in: in, msg: "each colon-separated field must have at least one digit", at: s}
    		}
    
    		// If followed by dot, might be in trailing IPv4.
    		if off < len(s) && s[off] == '.' {
    			if ellipsis < 0 && i != 12 {
    				// Not the right place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. cmd/metacache-entries.go

    				// We may be in a situation where we have a directory and an object with the same name.
    				// In that case we will drop the directory entry.
    				// This should however not be confused with an object with a trailing slash.
    				dirMatches := best.isDir() == other.isDir()
    				suffixMatches := strings.HasSuffix(best.name, slashSeparator) == strings.HasSuffix(other.name, slashSeparator)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. cmd/metacache-set.go

    	case metacacheSharePrefix:
    		return
    	case o.Prefix == o.BaseDir:
    		// No additional prefix
    		return
    	}
    	// Remove basedir.
    	o.FilterPrefix = strings.TrimPrefix(o.Prefix, o.BaseDir)
    	// Remove leading and trailing slashes.
    	o.FilterPrefix = strings.Trim(o.FilterPrefix, slashSeparator)
    
    	if strings.Contains(o.FilterPrefix, slashSeparator) {
    		// Sanity check, should not happen.
    		o.FilterPrefix = ""
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types.go

    	// The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
    	// all characters before the first "/" must be a valid subdomain as defined
    	// by RFC 1123. All characters trailing the first "/" must be valid HTTP Path
    	// characters as defined by RFC 3986. The value cannot exceed 63 characters.
    	// This field is immutable.
    	//
    	// This field is alpha-level. The job controller accepts setting the field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    	// Maximum length of the string returned from servicePortChainNameBase or
    	// servicePortEndpointChainNameBase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression.
    //
    //	-skip=""
    //		if non-empty, specifies a regular expression to suppress
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression. If a directive matches both the -run and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    			continue
    		}
    
    		flag = append(flag, c)
    	}
    
    	// Prefer to report a missing quote instead of a missing escape. If the string
    	// is something like `"foo\`, it's ambiguous as to whether the trailing
    	// backslash is really an escape at all.
    	if quote != 0 {
    		return nil, errors.New("unterminated quoted string in pkgconf output")
    	}
    	if escaped {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top