Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 311 for lchflags (0.19 sec)

  1. pkg/proxy/winkernel/hns.go

    	}
    	if flags.isVipExternalIP {
    		lbPortMappingFlags |= LoadBalancerPortMappingFlagsVipExternalIP
    	}
    
    	lbFlags := hcn.LoadBalancerFlagsNone
    	if flags.isDSR {
    		lbFlags |= hcn.LoadBalancerFlagsDSR
    	}
    
    	if flags.isIPv6 {
    		lbFlags |= LoadBalancerFlagsIPv6
    	}
    
    	lbDistributionType := hcn.LoadBalancerDistributionNone
    
    	if flags.sessionAffinity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    			prog:                 prog,
    			mustHaveBuildModePIE: true,
    			mustInternalLink:     true,
    			wantDf1Pie:           true,
    			wantSecsRO:           []string{".dynamic"},
    			wantSecsROIfPresent:  []string{".got"},
    		},
    		{
    			name:             "bindnow-linkmode-internal",
    			args:             []string{"-ldflags", "-bindnow -linkmode=internal"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_path_space_quote.txt

    # spaces. Arguments are normally split on spaces, tabs, newlines. If an
    # argument contains these characters, the entire argument may be quoted
    # with single or double quotes. This is the same as -gcflags and similar
    # options.
    
    [short] skip
    [!exec:clang] [!exec:gcc] skip
    [!cgo] skip
    
    env GOENV=$WORK/go.env
    mkdir 'program files'
    go build -o 'program files' './which cc/which cc.go'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 16 20:23:26 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/ssa_test.go

    	ok := os.WriteFile(rungo, stdout.Bytes(), 0600)
    	if ok != nil {
    		t.Fatalf("Failed to create temporary file " + rungo)
    	}
    
    	stdout.Reset()
    	stderr.Reset()
    	cmd = testenv.Command(t, gotool, "run", "-gcflags=-d=ssa/check/on", rungo)
    	cmd.Stdout = &stdout
    	cmd.Stderr = &stderr
    	cmd.Env = append(cmd.Env, ev...)
    	err := cmd.Run()
    	if err != nil {
    		t.Fatalf("Failed: %v:\nOut: %s\nStderr: %s\n", err, &stdout, &stderr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode_test.go

    			t.Parallel()
    			src := filepath.Join("testdata", "deadcode", test.src+".go")
    			exe := filepath.Join(tmpdir, test.src+".exe")
    			cmd := testenv.Command(t, testenv.GoToolPath(t), "build", "-ldflags=-dumpdep", "-o", exe, src)
    			out, err := cmd.CombinedOutput()
    			if err != nil {
    				t.Fatalf("%v: %v:\n%s", cmd.Args, err, out)
    			}
    			for _, pos := range test.pos {
    				if !bytes.Contains(out, []byte(pos+"\n")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:07:26 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. test/codegen/clobberdead.go

    // asmcheck -gcflags=-clobberdead
    
    //go:build amd64 || arm64
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    type T [2]*int // contain pointer, not SSA-able (so locals are not registerized)
    
    var p1, p2, p3 T
    
    func F() {
    	// 3735936685 is 0xdeaddead. On ARM64 R27 is REGTMP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue20266.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 20266: use -I with a relative path.
    
    package cgotest
    
    /*
    #cgo CFLAGS: -I issue20266 -Iissue20266 -Ddef20266
    #include "issue20266.h"
    */
    import "C"
    
    import "testing"
    
    func test20266(t *testing.T) {
    	if got, want := C.issue20266, 20266; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 463 bytes
    - Viewed (0)
  8. src/runtime/libfuzzer.go

    	start := unsafe.Pointer(&__start___sancov_cntrs)
    	end := unsafe.Pointer(&__stop___sancov_cntrs)
    
    	// PC tables are arrays of ptr-sized integers representing pairs [PC,PCFlags] for every instrumented block.
    	// The number of PCs and PCFlags is the same as the number of 8-bit counters. Each PC table entry has
    	// the size of two ptr-sized integers. We allocate one more byte than what we actually need so that we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 23 01:12:02 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/icu.go

    // allow CGO in tests. The build tag should ensure either way that these
    // functions will not end up in the package.
    
    // TODO: Ensure that the correct ICU version is set.
    
    /*
    #cgo LDFLAGS: -licui18n.57 -licuuc.57
    #include <stdlib.h>
    #include <unicode/ustring.h>
    #include <unicode/utypes.h>
    #include <unicode/localpointer.h>
    #include <unicode/ucasemap.h>
    */
    import "C"
    
    import "unsafe"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/os/user/cgo_lookup_cgo.go

    // license that can be found in the LICENSE file.
    
    //go:build cgo && !osusergo && unix && !android && !darwin
    
    package user
    
    import (
    	"syscall"
    )
    
    /*
    #cgo solaris CFLAGS: -D_POSIX_PTHREAD_SEMANTICS
    #cgo CFLAGS: -fno-stack-protector
    #include <unistd.h>
    #include <sys/types.h>
    #include <pwd.h>
    #include <grp.h>
    #include <stdlib.h>
    #include <string.h>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 17:45:51 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top