Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for sysPort (0.1 sec)

  1. src/cmd/compile/internal/test/testdata/mysort/mysort.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generic sort function, tested with two different pointer types.
    
    package mysort
    
    import (
    	"fmt"
    )
    
    type LessConstraint[T any] interface {
    	Less(T) bool
    }
    
    //go:noinline
    func Sort[T LessConstraint[T]](x []T) {
    	n := len(x)
    	for i := 1; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 20:53:52 UTC 2021
    - 762 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/ptrsort.go

    // make sure only one instantiation is created.
    
    import (
    	"fmt"
    
    	"cmd/compile/internal/test/testdata/mysort"
    )
    
    type MyString struct {
    	string
    }
    
    func (a *MyString) Less(b *MyString) bool {
    	return a.string < b.string
    }
    
    func main() {
    	mysort.F()
    
    	sl1 := []*mysort.MyInt{{7}, {1}, {4}, {6}}
    	mysort.Sort(sl1)
    	fmt.Printf("%v %v %v %v\n", sl1[0], sl1[1], sl1[2], sl1[3])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 19:10:58 UTC 2022
    - 633 bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/options/security.go

    		SecretTTL:                      secretTTLEnv,
    		FileDebounceDuration:           fileDebounceDuration,
    		SecretRotationGracePeriodRatio: secretRotationGracePeriodRatioEnv,
    		STSPort:                        stsPort,
    		CertSigner:                     certSigner.Get(),
    		CARootPath:                     cafile.CACertFilePath,
    		CertChainFilePath:              security.DefaultCertChainFilePath,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. pkg/bootstrap/config.go

    		opts = append(opts, option.GCPProjectNumber(projectNumber))
    	}
    
    	if cfg.Metadata.StsPort != "" {
    		stsPort, err := strconv.Atoi(cfg.Metadata.StsPort)
    		if err == nil && stsPort > 0 {
    			opts = append(opts,
    				option.STSEnabled(true),
    				option.STSPort(stsPort))
    			md := cfg.Metadata.PlatformMetadata
    			if projectID, found := md[platform.GCPProject]; found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    	re(`-pthread`),
    	re(`-?-std=([^@\-].*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`--sysroot=([^@\-].*)`),
    	re(`-w`),
    	re(`-x([^@\-].*)`),
    	re(`-v`),
    }
    
    var validCompilerFlagsWithNextArg = []string{
    	"-arch",
    	"-D",
    	"-U",
    	"-I",
    	"-F",
    	"-framework",
    	"-include",
    	"-isysroot",
    	"-isystem",
    	"--sysroot",
    	"-target",
    	"-x",
    }
    
    var invalidLinkerFlags = []*lazyregexp.Regexp{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/log/LoggerTest.java

                System.out.println("test" + i);
            }
            final long sysout = System.currentTimeMillis() - start;
            start = System.currentTimeMillis();
            for (int i = 0; i < num; i++) {
                logger.fatal("test" + i);
            }
            final long logger = System.currentTimeMillis() - start;
            System.out.println("System.out:" + sysout);
            System.out.println("logger:" + logger);
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/options/agent_proxy.go

    package options
    
    import (
    	istioagent "istio.io/istio/pkg/istio-agent"
    )
    
    // ProxyArgs provides all of the configuration parameters for the Pilot proxy.
    type ProxyArgs struct {
    	istioagent.Proxy
    
    	StsPort            int
    	TokenManagerPlugin string
    
    	MeshConfigFile string
    
    	// proxy config flags (named identically)
    	ServiceCluster         string
    	ProxyLogLevel          string
    	ProxyComponentLogLevel string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/app/cmd.go

    			"PROXY_CONFIG environment variable or proxy.istio.io/config annotation.")
    	proxyCmd.PersistentFlags().IntVar(&proxyArgs.StsPort, "stsPort", 0,
    		"HTTP Port on which to serve Security Token Service (STS). If zero, STS service will not be provided.")
    	proxyCmd.PersistentFlags().StringVar(&proxyArgs.TokenManagerPlugin, "tokenManagerPlugin", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

        rm -rf "libstdc++6_4.8.1-10ubuntu8_arm64.deb" "libstdc++6_4.8.1-10ubuntu8_arm64"
    
    mkdir -p "${TARGET}-src"
    cd "${TARGET}-src"
    
    # Build a devtoolset cross-compiler based on our glibc 2.12/glibc 2.17 sysroot setup.
    case "${VERSION}" in
    devtoolset-9)
      wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 "https://vault.centos.org/centos/7/sclo/Source/rh/devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/inst_test.go

    // Sort is used for multiple pointer types across two packages.
    func TestInst(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveGoRun(t)
    
    	// Build ptrsort.go, which uses package mysort.
    	var output []byte
    	var err error
    	filename := "ptrsort.go"
    	exename := "ptrsort"
    	outname := "ptrsort.out"
    	gotool := testenv.GoToolPath(t)
    	dest := filepath.Join(t.TempDir(), exename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top