Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for hostlink (0.37 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. 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)
  3. 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)
  4. 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)
  5. src/internal/testenv/testenv.go

    	ok, reason := hasSymlink()
    	if !ok {
    		t.Skipf("skipping test: cannot make symlinks on %s/%s: %s", runtime.GOOS, runtime.GOARCH, reason)
    	}
    }
    
    // HasLink reports whether the current system can use os.Link.
    func HasLink() bool {
    	// From Android release M (Marshmallow), hard linking files is blocked
    	// and an attempt to call link() on a file will return EACCES.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

                    doLast {
                        println "Pre Link"
                    }
                }
                binary.tasks.link.dependsOn preLinkTask
    
                def postLinkTask = binary.tasks.taskName("postLink")
                t.create(postLinkTask) {
                    dependsOn binary.tasks.link
                    doLast {
                        println "Post Link"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/environment/kube/flags.go

    	flag.StringVar(&controlPlaneTopology, "istio.test.kube.controlPlaneTopology",
    		"", "Specifies the mapping for each cluster to the cluster hosting its control plane. The value is a "+
    			"comma-separated list of the form <clusterIndex>:<controlPlaneClusterIndex>, where the indexes refer to the order in which "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/partially_decluster_pass_test.cc

    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    REGISTER_OP("FakeNullary").Output("out: int32");
    
    REGISTER_OP("FakeBinary")
        .Input("host_in: int32")
        .Input("device_in: int32")
        .Output("host_out: int32")
        .Output("device_out: int32");
    
    REGISTER_OP("FakeResourceVar").Output("out: resource");
    
    REGISTER_OP("FakeResourceUpdate")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    proxy protocol.
    
    Import path checking
    
    When the custom import path feature described above redirects to a
    known code hosting site, each of the resulting packages has two possible
    import paths, using the custom domain or the known hosting site.
    
    A package statement is said to have an "import comment" if it is immediately
    followed (before the next newline) by a comment of one of these two forms:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

                            }
                        }
                    }
                }
            """
    
            expect:
            succeeds('assemble')
        }
    
        // TODO: Use HTTP hosting for git repo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top