Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 164 for setFid (0.29 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/LegacyRepositorySystemSessionExtender.java

                        repository.getId(),
                        repository.getUrl(),
                        repository.getLayout(),
                        repository.getSnapshots(),
                        repository.getReleases());
    
                repository.setMirroredRepositories(Collections.singletonList(original));
    
                repository.setId(mirror.getId());
                repository.setUrl(mirror.getUrl());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/ctrlz/topics/signals.go

    		fw.RenderHTML(w, tmpl, nil)
    	})
    
    	_ = context.JSONRouter().StrictSlash(true).NewRoute().Methods("PUT", "POST").Path("/SIGUSR1").HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		err := syscall.Kill(os.Getpid(), syscall.SIGUSR1)
    		if err != nil {
    			w.WriteHeader(http.StatusInternalServerError)
    			return
    		}
    		w.WriteHeader(http.StatusAccepted)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:12:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java

        private Map<String, Object> fields;
    
        private final List<Map<String, Object>> documentList = new ArrayList<>();
    
        @Override
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        @Override
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/proc.go

    	Goroutines int    `json:"goroutines"`
    }
    
    func getProcInfo() *procInfo {
    	pi := procInfo{
    		Egid:       os.Getegid(),
    		Euid:       os.Geteuid(),
    		GID:        os.Getgid(),
    		Pid:        os.Getpid(),
    		Ppid:       os.Getppid(),
    		UID:        os.Getuid(),
    		TempDir:    os.TempDir(),
    		Goroutines: runtime.NumGoroutine(),
    	}
    
    	pi.Groups, _ = os.Getgroups()
    	pi.Wd, _ = os.Hostname()
    	pi.Hostname, _ = os.Hostname()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/PrecompiledGroovyScript.java

        }
    
        void declarePlugin(PluginDeclaration pluginDeclaration) {
            pluginDeclaration.setImplementationClass(getPluginAdapterClassName());
            pluginDeclaration.setId(pluginId.getId());
        }
    
        String getId() {
            return pluginId.getId();
        }
    
        String getPluginAdapterClassName() {
            return precompiledScriptClassName + "Plugin";
        }
    
        String getFirstPassClassName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. cluster/addons/dns/kube-dns/kube-dns.yaml.in

              mountPath: /etc/k8s/dns/dnsmasq-nanny
            securityContext:
              capabilities:
                drop:
                  - all
                add:
                  - NET_BIND_SERVICE
                  - SETGID
          - name: sidecar
            image: registry.k8s.io/dns/k8s-dns-sidecar:1.23.1
            livenessProbe:
              httpGet:
                path: /metrics
                port: 10054
                scheme: HTTP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                    logger.warn("Web Config {} does not exist.", getWebConfigId(), e);
                }
            }
            return webConfig;
        }
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    	GenerateName(obj runtime.Object) (string, error)
    	SetGenerateName(obj runtime.Object, name string) error
    
    	UID(obj runtime.Object) (types.UID, error)
    	SetUID(obj runtime.Object, uid types.UID) error
    
    	SelfLink(obj runtime.Object) (string, error)
    	SetSelfLink(obj runtime.Object, selfLink string) error
    
    	Labels(obj runtime.Object) (map[string]string, error)
    	SetLabels(obj runtime.Object, labels map[string]string) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonStopEvents.java

                    return 0;
                }
            });
    
            // User likely doesn't care about daemons that stopped a long time ago
            for (DaemonStopEvent event : sortedEvents) {
                Long pid = event.getPid();
                if (event.occurredInLastHours(RECENTLY) && !uniqueStoppedPids.contains(pid)) {
                    // We can only determine if two DaemonStopEvent point at the same daemon if we know the PIDs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/exec.go

    	for i := 0; i < goCount; i++ {
    		go func() {
    			defer wg.Done()
    			for j := 0; j < execCount; j++ {
    				c2 := make(chan os.Signal, 1)
    				signal.Notify(c2, syscall.SIGUSR1)
    				syscall.Kill(os.Getpid(), syscall.SIGTERM)
    				go func(j int) {
    					defer wg.Done()
    					cmd := exec.Command(os.Args[0], "CgoExecSignalMask", "testsigint")
    					cmd.Stdin = os.Stdin
    					cmd.Stdout = os.Stdout
    					cmd.Stderr = os.Stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top