Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for hostlink (0.3 sec)

  1. src/cmd/link/internal/ld/main.go

    		thearch.GenSymsLate(ctxt, ctxt.loader)
    	}
    
    	bench.Start("Asmb2")
    	asmb2(ctxt)
    
    	bench.Start("Munmap")
    	ctxt.Out.Close() // Close handles Munmapping if necessary.
    
    	bench.Start("hostlink")
    	ctxt.hostlink()
    	if ctxt.Debugvlog != 0 {
    		ctxt.Logf("%s", ctxt.loader.Stat())
    		ctxt.Logf("%d liveness data\n", liveness)
    	}
    	bench.Start("Flush")
    	ctxt.Bso.Flush()
    	bench.Start("archive")
    	ctxt.archive()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	if out, err := exec.Command(argv[0], argv[1:]...).CombinedOutput(); err != nil {
    		Exitf("running %s failed: %v\n%s", argv[0], err, out)
    	}
    }
    
    func (ctxt *Link) hostlink() {
    	if ctxt.LinkMode != LinkExternal || nerrors > 0 {
    		return
    	}
    	if ctxt.BuildMode == BuildModeCArchive {
    		return
    	}
    
    	var argv []string
    	argv = append(argv, ctxt.extld()...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	out, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)
    
    	if len(out) > 0 {
    		// Filter out useless linker warnings caused by bugs outside Go.
    		// See also cmd/link/internal/ld's hostlink method.
    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

        }
    
        @Override
        public boolean hasLink(String name, Predicate<? super MutableModelNode> predicate) {
            return target != null && target.hasLink(name, predicate);
        }
    
        @Override
        public boolean hasLink(String name) {
            return target != null && target.hasLink(name);
        }
    
        @Override
        public <T> T getPrivateData(ModelType<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/webhook.go

    // TLS handled by a proxy/gateway in front of Istiod.
    func (s *Server) initSecureWebhookServer(args *PilotArgs) {
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	if args.ServerOptions.HTTPSAddr == "" {
    		s.httpsMux = s.httpMux
    		istiolog.Infof("HTTPS port is disabled, multiplexing webhooks on the httpAddr %v", args.ServerOptions.HTTPAddr)
    		return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

    import org.gradle.model.internal.type.ModelType;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Set;
    
    public interface ModelNode {
    
        boolean hasLink(String name);
    
        boolean hasLink(String name, ModelType<?> type);
    
        // Note: order is crucial here. Nodes are traversed through these states in the order defined below
        enum State {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/net_darwin.go

    func libc_getnameinfo_trampoline()
    
    func Getnameinfo(sa *syscall.RawSockaddr, salen int, host *byte, hostlen int, serv *byte, servlen int, flags int) (int, error) {
    	gerrno, _, errno := syscall_syscall9(abi.FuncPCABI0(libc_getnameinfo_trampoline),
    		uintptr(unsafe.Pointer(sa)),
    		uintptr(salen),
    		uintptr(unsafe.Pointer(host)),
    		uintptr(hostlen),
    		uintptr(unsafe.Pointer(serv)),
    		uintptr(servlen),
    		uintptr(flags),
    		0,
    		0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/internal/testenv/testenv_notwin.go

    			_ = os.RemoveAll(dir)
    		}()
    		fpath := filepath.Join(dir, "testfile.txt")
    		if err := os.WriteFile(fpath, nil, 0644); err != nil {
    			return false, ""
    		}
    		if err := os.Symlink(fpath, filepath.Join(dir, "testlink")); err != nil {
    			if SyscallIsNotSupported(err) {
    				return false, fmt.Sprintf("symlinks unsupported: %s", err.Error())
    			}
    			return false, ""
    		}
    	}
    
    	return true, ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 05:22:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. tests/integration/security/fuzz/fuzzers/jwt_tool/jwtconf.ini

    pubkey = sample-RSA-public.pem
    privkey = sample-RSA-private.pem
    jwks =
    
    [services]
    jwt_tool_version = 2.2.3
    # To disable the proxy option set this value to: False (no quotes)
    proxy = False
    # Set this to the URL you are hosting your custom JWKS file - your own server, or maybe use this cheeky reflective URL (https://httpbin.org/base64/{base64-encoded_JWKS_here})
    jwksloc =
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmManager.java

     * deleted without prior notice.
     *
     */
    public interface ClassRealmManager {
    
        /**
         * Gets the class realm hosting the Maven core.
         *
         * @return The class realm hosting the Maven core, never {@code null}.
         */
        ClassRealm getCoreRealm();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top