Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for tbd (0.04 sec)

  1. test/linkx.go

    // This test is run by linkx_run.go.
    
    package main
    
    import "fmt"
    
    var tbd string
    var overwrite string = "dibs"
    
    var tbdcopy = tbd
    var overwritecopy = overwrite
    var arraycopy = [2]string{tbd, overwrite}
    
    var b bool
    var x int
    
    func main() {
    	fmt.Println(tbd)
    	fmt.Println(tbdcopy)
    	fmt.Println(arraycopy[0])
    
    	fmt.Println(overwrite)
    	fmt.Println(overwritecopy)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 01 20:13:05 UTC 2019
    - 741 bytes
    - Viewed (0)
  2. test/linkx_run.go

    	"strings"
    )
    
    func main() {
    	// test(" ") // old deprecated & removed syntax
    	test("=") // new syntax
    }
    
    func test(sep string) {
    	// Successful run
    	cmd := exec.Command("go", "run", "-ldflags=-X main.tbd"+sep+"hello -X main.overwrite"+sep+"trumped -X main.nosuchsymbol"+sep+"neverseen", "linkx.go")
    	var out, errbuf bytes.Buffer
    	cmd.Stdout = &out
    	cmd.Stderr = &errbuf
    	err := cmd.Run()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/transformation/ConsumerPomArtifactTransformer.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Consumer POM transformer.
     *
     * @since TBD
     */
    public interface ConsumerPomArtifactTransformer {
    
        InstallRequest remapInstallArtifacts(RepositorySystemSession session, InstallRequest request);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/security_test.go

    	{"-Wl,-framework,Chocolate"},
    	{"-Wl,-unresolved-symbols=ignore-all"},
    	{"-Wl,-z,relro"},
    	{"-Wl,-z,relro,-z,now"},
    	{"-Wl,-z,now"},
    	{"-Wl,-z,noexecstack"},
    	{"libcgotbdtest.tbd"},
    	{"./libcgotbdtest.tbd"},
    }
    
    var badLinkerFlags = [][]string{
    	{"-DFOO"},
    	{"-Dfoo=bar"},
    	{"-W"},
    	{"-Wall"},
    	{"-fobjc-arc"},
    	{"-fno-objc-arc"},
    	{"-fomit-frame-pointer"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_internal.txt

    go get ./throughdep
    
    go get ./baddep
    ! go build ./baddep
    stderr golang.org[/\\]notx[/\\]useinternal
    stderr 'use of internal package golang.org/x/.* not allowed'
    
    -- go.mod --
    module TBD
    go 1.12
    -- useinternal.go --
    package useinternal
    import _ "golang.org/x/internal/subtle"
    
    -- useinternal_test.go --
    package useinternal_test
    import (
    	"testing"
    	_ "golang.org/x/internal/subtle"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/security.go

    	re(`-Wl,--(no-)?warn-([^,]+)`),
    	re(`-Wl,-?-wrap[=,][^,@\-][^,]*`),
    	re(`-Wl(,-z,(relro|now|(no)?execstack))+`),
    
    	re(`[a-zA-Z0-9_/].*\.(a|o|obj|dll|dylib|so|tbd)`), // direct linker inputs: x.o or libfoo.so (but not -foo.o or @foo.o)
    	re(`\./.*\.(a|o|obj|dll|dylib|so|tbd)`),
    }
    
    var validLinkerFlagsWithNextArg = []string{
    	"-arch",
    	"-F",
    	"-l",
    	"-L",
    	"-framework",
    	"-isysroot",
    	"--sysroot",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifact.java

    import org.apache.maven.project.MavenProject;
    import org.eclipse.aether.RepositorySystemSession;
    
    /**
     * Transformed artifact is derived with some transformation from source artifact.
     *
     * @since TBD
     */
    class TransformedArtifact extends DefaultArtifact {
    
        private static final int SHA1_BUFFER_SIZE = 8192;
        private final DefaultConsumerPomArtifactTransformer defaultConsumerPomArtifactTransformer;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java

    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.installation.InstallRequest;
    import org.eclipse.sisu.PreDestroy;
    
    /**
     * Consumer POM transformer.
     *
     * @since TBD
     */
    @Singleton
    @Named("consumer-pom")
    class DefaultConsumerPomArtifactTransformer implements ConsumerPomArtifactTransformer {
    
        private static final String CONSUMER_POM_CLASSIFIER = "consumer";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/base.go

    					newGoal := sample[GOAL].Value.Uint64()
    					pctOff := 100 * (int64(newGoal) - int64(requestedHeapGoal)) / int64(requestedHeapGoal)
    					// Check that the new goal is close to requested.  3% of make.bash fails this test.  Why, TBD.
    					if pctOff < 2 {
    						fmt.Fprintf(os.Stderr, "GCAdjust: Retry GOGC adjust, current goal %d, count is %d, gogc was %d, is now %d, calcLive %d pctOff %d\n",
    							goal, count, oldGogc, myGogc, calcLive, pctOff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/values.yaml

        # configured to have the same Mesh ID value. If an existing cluster 'joins' a
        # multicluster mesh, it will need to be migrated to the new mesh ID. Details
        # of migration TBD, and it may be a disruptive operation to change the Mesh
        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top