Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for getUid (0.33 sec)

  1. src/os/exec_test.go

    	if runtime.GOARCH == "wasm" {
    		t.Skip("Signals send + notify not fully supported om wasm port")
    	}
    
    	c := make(chan os.Signal, 1)
    	signal.Notify(c, os.Interrupt)
    	defer signal.Stop(c)
    
    	p := &os.Process{Pid: os.Getpid()}
    	if err := p.Signal(os.Interrupt); err != nil {
    		t.Fatalf("Signal got err %v, want nil", err)
    	}
    
    	// Verify we actually received the signal.
    	select {
    	case <-time.After(1 * time.Second):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                throw new DependencyResolutionException(
                        result,
                        "Could not collect dependencies for project " + project.getId(),
                        logger.isDebugEnabled() ? e : null);
            }
    
            depRequest.setRoot(node);
    
            if (logger.isWarnEnabled()) {
                for (DependencyNode child : node.getChildren()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                        this.foo = objects.newInstance(Foo.class);
                        this.foo.getBar().set("bar");
    
                        getId().convention("<no id>");
                    }
    
                    @Restricted
                    public abstract Property<String> getId();
    
                    public Foo getFoo() {
                        return foo;
                    }
    
                    @Configuring
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /** {@inheritDoc} */
        public String getRoleHint() {
            return getId();
        }
    
        /**
         * @return the id of the mojo, based on the goal name
         */
        public String getId() {
            return getPluginDescriptor().getId() + ":" + getGoal();
        }
    
        /**
         * @return the full goal name
         * @see PluginDescriptor#getGoalPrefix()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. src/os/exec.go

    type Signal interface {
    	String() string
    	Signal() // to distinguish from other Stringers
    }
    
    // Getpid returns the process id of the caller.
    func Getpid() int { return syscall.Getpid() }
    
    // Getppid returns the process id of the caller's parent.
    func Getppid() int { return syscall.Getppid() }
    
    // FindProcess looks for a running process by its pid.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. pkg/config/validation/virtualservice.go

    	// check http route match requests
    	errs = AppendValidation(errs, validateHTTPRouteMatchRequest(http))
    
    	// header manipulation
    	for name, val := range http.Headers.GetRequest().GetAdd() {
    		errs = AppendValidation(errs, ValidateHTTPHeaderWithAuthorityOperationName(name))
    		errs = AppendValidation(errs, ValidateHTTPHeaderValue(val))
    	}
    	for name, val := range http.Headers.GetRequest().GetSet() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/os/pidfd_linux.go

    // seccomp or a similar technology.
    func checkPidfd() error {
    	// Get a pidfd of the current process (opening of "/proc/self" won't
    	// work for waitid).
    	fd, err := unix.PidFDOpen(syscall.Getpid(), 0)
    	if err != nil {
    		return NewSyscallError("pidfd_open", err)
    	}
    	defer syscall.Close(int(fd))
    
    	// Check waitid(P_PIDFD) works.
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

        fun ProblemSeverity.toProblemSeverity() = when {
            this == ProblemSeverity.Suppressed -> Severity.ADVICE
            isFailOnProblems -> Severity.ERROR
            else -> Severity.WARNING
        }
    
        override fun getId(): String {
            return "configuration-cache"
        }
    
        fun queryFailure(summary: Summary = summarizer.get(), htmlReportFile: File? = null): Throwable? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                        + ", " + STRATEGY_PLUGIN + " and " + STRATEGY_SELF_FIRST);
            }
            log.debug("Populating class realm {}", realm.getId());
            for (Artifact artifact : artifacts) {
                String id = artifact.getGroupId() + ":" + artifact.getArtifactId();
                if (providedArtifacts.contains(id)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. api/maven-api-plugin/src/main/mdo/plugin.mdo

            <codeSegment>
              <version>2.0.0+</version>
              <code><![CDATA[
        public String getPluginLookupKey() {
            return groupId + ":" + artifactId;
        }
    
        public String getId() {
            return groupId + ":" + artifactId + ":" + version;
        }
    
              ]]></code>
            </codeSegment>
          </codeSegments>
        </class>
    
        <class xdoc.anchorName="mojo">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top