Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for setTrace (0.5 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                }
            }
    
            DependencyRequest depRequest = new DependencyRequest(collect, filter);
            depRequest.setTrace(trace);
    
            DependencyNode node;
            try {
                collect.setTrace(RequestTrace.newChild(trace, depRequest));
                node = repoSystem.collectDependencies(session, collect).getRoot();
                result.setDependencyGraph(node);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java

                    LegacyLocalRepositoryManager.overlay(localRepository, legacySupport.getRepositorySession(), repoSystem);
    
            DeployRequest request = new DeployRequest();
    
            request.setTrace(RequestTrace.newChild(null, legacySupport.getSession().getCurrentProject()));
    
            org.eclipse.aether.artifact.Artifact mainArtifact = RepositoryUtils.toArtifact(artifact);
            mainArtifact = mainArtifact.setFile(source);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java

                    LegacyLocalRepositoryManager.overlay(localRepository, legacySupport.getRepositorySession(), repoSystem);
    
            InstallRequest request = new InstallRequest();
    
            request.setTrace(RequestTrace.newChild(null, legacySupport.getSession().getCurrentProject()));
    
            org.eclipse.aether.artifact.Artifact mainArtifact = RepositoryUtils.toArtifact(artifact);
            mainArtifact = mainArtifact.setFile(source);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/internal/nettrace/nettrace.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package nettrace contains internal hooks for tracing activity in
    // the net package. This package is purely internal for use by the
    // net/http/httptrace package and has no stable API exposed to end
    // users.
    package nettrace
    
    // TraceKey is a context.Context Value key. Its associated value should
    // be a *Trace struct.
    type TraceKey struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/vdso_test.go

    		}
    		os.Exit(0)
    	}
    
    	t.Parallel()
    
    	// Look for strace in /bin or /usr/bin. Don't assume that some
    	// strace on PATH is the one that we want.
    	strace := "/bin/strace"
    	if _, err := os.Stat(strace); err != nil {
    		strace = "/usr/bin/strace"
    		if _, err := os.Stat(strace); err != nil {
    			t.Skipf("skipping test because strace not found: %v", err)
    		}
    	}
    
    	exe, err := os.Executable()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:47:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/modelRules/modelDslCoercion/groovy/build.gradle

    enum Temperature {
       TOO_HOT,
       TOO_COLD,
       JUST_RIGHT
    }
    
    @Managed
    interface Item {
       void setName(String n); String getName()
    
       void setQuantity(int q); int getQuantity()
    
       void setPrice(float p); float getPrice()
    
       void setTemperature(Temperature t)
       Temperature getTemperature()
    
       void setDataFile(File f); File getDataFile()
    }
    
    class ItemRules extends RuleSource {
       @Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/net/http/httptrace/trace.go

    // license that can be found in the LICENSE file.
    
    // Package httptrace provides mechanisms to trace the events within
    // HTTP client requests.
    package httptrace
    
    import (
    	"context"
    	"crypto/tls"
    	"internal/nettrace"
    	"net"
    	"net/textproto"
    	"reflect"
    	"time"
    )
    
    // unique type to prevent assignment.
    type clientEventContextKey struct{}
    
    // ContextClientTrace returns the [ClientTrace] associated with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top