Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for hostlink (0.13 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. 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)
  5. docs/en/docs/how-to/custom-docs-ui-assets.md

    ## Self-hosting JavaScript and CSS for docs
    
    Self-hosting the JavaScript and CSS could be useful if, for example, you need your app to keep working even while offline, without open Internet access, or in a local network.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            return this.executedRules == null ? Collections.<ModelRuleDescriptor>emptyList() : this.executedRules;
        }
    
        @Override
        public boolean hasLink(String name, ModelType<?> type) {
            return hasLink(name, withType(type));
        }
    
        @Override
        public Iterable<? extends MutableModelNode> getLinks(ModelType<?> type) {
            return getLinks(withType(type));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/preflight.go

    		kubeadm join phase preflight --config kubeadm-config.yaml
    		`)
    
    	notReadyToJoinControlPlaneTemp = template.Must(template.New("join").Parse(dedent.Dedent(`
    		One or more conditions for hosting a new control plane instance is not satisfied.
    
    		{{.Error}}
    
    		Please ensure that:
    		* The cluster has a stable controlPlaneEndpoint address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. fastapi/openapi/docs.py

        Read more about it in the
        [FastAPI docs for Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/)
        and the [FastAPI docs for Custom Docs UI Static Assets (Self-Hosting)](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/).
        """
        current_swagger_ui_parameters = swagger_ui_default_parameters.copy()
        if swagger_ui_parameters:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            }
            this.privateDataType = type;
            this.privateData = object;
        }
    
        @Override
        public boolean hasLink(String name) {
            return links != null && links.containsKey(name);
        }
    
        @Override
        @Nullable
        public ModelNodeInternal getLink(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/codehost.go

    	MaxLICENSE = 16 << 20  // maximum size of LICENSE file
    	MaxZipFile = 500 << 20 // maximum size of downloaded zip file
    )
    
    // A Repo represents a code hosting source.
    // Typical implementations include local version control repositories,
    // remote version control servers, and code hosting sites.
    //
    // A Repo must be safe for simultaneous use by multiple goroutines,
    // and callers must not modify returned values, which may be cached and shared.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top