Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 840 for SUFFIX (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	case DecimalExponent, DecimalSI:
    		number, exponent := q.AsCanonicalBytes(out)
    		suffix, _ := quantitySuffixer.constructBytes(10, exponent, format)
    		return number, suffix
    	default:
    		// format must be BinarySI
    		number, exponent := rounded.AsCanonicalBase1024Bytes(out)
    		suffix, _ := quantitySuffixer.constructBytes(2, exponent*10, format)
    		return number, suffix
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion_test.go

    		Hostname: "httpbin-apple.apple.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "banana",
    		},
    		Ports:    ports,
    		Hostname: "httpbin-banana.banana.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "default",
    		},
    		Ports:    ports,
    		Hostname: "httpbin-second.default.svc.domain.suffix",
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: eastwestgateway-istio.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar.go

    			return true // The "/any" matches "/any/path" case.
    		}
    	}
    	return false
    }
    
    // hasDotSuffix reports whether s ends in "."+suffix.
    func hasDotSuffix(s, suffix string) bool {
    	return len(s) > len(suffix) && s[len(s)-len(suffix)-1] == '.' && s[len(s)-len(suffix):] == suffix
    }
    
    // Cookies implements the Cookies method of the [http.CookieJar] interface.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/HasPrefixAndSuffixPatternStep.java

        public HasPrefixAndSuffixPatternStep(String prefix, String suffix, boolean caseSensitive) {
            prefixMatch = new HasPrefixPatternStep(prefix, caseSensitive);
            suffixMatch = new HasSuffixPatternStep(suffix, caseSensitive, prefix.length());
        }
    
        @Override
        public String toString() {
            return "{prefix: " + prefixMatch + " suffix: " + suffixMatch + "}";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: eastwestgateway-istio.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. tools/docker-builder/common.go

    		for _, tg := range a.Tags {
    			if variant == DefaultVariant {
    				// For default, we have no suffix
    				tags = append(tags, fmt.Sprintf("%s/%s:%s%s", h, target, tg, a.suffix))
    			} else {
    				// Otherwise, we have a suffix with the variant
    				tags = append(tags, fmt.Sprintf("%s/%s:%s-%s%s", h, target, tg, variant, a.suffix))
    				// If we need a default as well, add it as a second tag for the same image to avoid building twice
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/net/interface_linux_test.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"fmt"
    	"os/exec"
    	"testing"
    )
    
    func (ti *testInterface) setBroadcast(suffix int) error {
    	ti.name = fmt.Sprintf("gotest%d", suffix)
    	xname, err := exec.LookPath("ip")
    	if err != nil {
    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 00:05:32 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioTargetBinary.java

        enum ProjectType {
            EXE("Exe"), LIB("Lib"), DLL("Dll"), NONE("");
    
            private final String suffix;
    
            ProjectType(String suffix) {
                this.suffix = suffix;
            }
    
            public String getSuffix() {
                return suffix;
            }
        }
    
        enum LanguageStandard {
            NONE(""),
            STD_CPP_14("stdcpp14"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/tempfile.go

    	"os"
    	"path/filepath"
    	"sync"
    )
    
    // newTempFile returns a new output file in dir with the provided prefix and suffix.
    func newTempFile(dir, prefix, suffix string) (*os.File, error) {
    	for index := 1; index < 10000; index++ {
    		switch f, err := os.OpenFile(filepath.Join(dir, fmt.Sprintf("%s%03d%s", prefix, index, suffix)), os.O_RDWR|os.O_CREATE|os.O_EXCL, 0666); {
    		case err == nil:
    			return f, nil
    		case !os.IsExist(err):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top