Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 397 for setFid (0.35 sec)

  1. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            boolean doIndexCreate = false;
            boolean doCreate = false;
            try {
                final GetResponse getResponse =
                        client.prepareGet().setIndex(settingsIndexName).setId(settingsId).execute().actionGet(getSearchTimeout());
    
                if (!getResponse.isExists()) {
                    doCreate = true;
                }
            } catch (final IndexNotFoundException e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulatorTest.java

            Repository r = new Repository();
            r.setId("test");
            r.setUrl("file:///test");
    
            Profile p = new Profile();
            p.setId("test");
            p.addPluginRepository(r);
    
            Settings settings = new Settings();
            settings.addProfile(p);
            settings.addActiveProfile(p.getId());
    
            testee.populateFromSettings(request, settings);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start_posix.go

    package telemetry
    
    import (
    	"os/exec"
    	"syscall"
    )
    
    func init() {
    	daemonize = daemonizePosix
    }
    
    func daemonizePosix(cmd *exec.Cmd) {
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Setsid: true,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 441 bytes
    - Viewed (0)
  4. maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java

            assertThat( target.getDescription(), is( "TARGET" ) );
        }
    
        @Test
        public void mergeSameDevelopers()
        {
            Developer developer = new Developer();
            developer.setId( "devid" );
    
            Model target = new Model();
            target.setDevelopers( Arrays.asList( developer ) );
    
            Model source = new Model();
            source.setDevelopers( Arrays.asList( developer ) );
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. src/syscall/exec_linux.go

    	Ptrace bool
    	Setsid bool // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux.go

    //sys	read(fd int, p []byte) (n int, err error)
    //sys	Removexattr(path string, attr string) (err error)
    //sys	Setdomainname(p []byte) (err error)
    //sys	Sethostname(p []byte) (err error)
    //sysnb	Setpgid(pid int, pgid int) (err error)
    //sysnb	Setsid() (pid int, err error)
    //sysnb	Settimeofday(tv *Timeval) (err error)
    
    // Provided by runtime.syscall_runtime_doAllThreadsSyscall which stops the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. docs/metrics/v3.md

    | `minio_cluster_erasure_set_write_quorum`         | `gauge` | Write quorum for the erasure set in a pool                                        | `pool_id,set_id` |
    | `minio_cluster_erasure_set_online_drives_count`  | `gauge` | Count of online drives in the erasure set in a pool                               | `pool_id,set_id` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_select select "libc.so"
    //go:cgo_import_dynamic libc_setegid setegid "libc.so"
    //go:cgo_import_dynamic libc_seteuid seteuid "libc.so"
    //go:cgo_import_dynamic libc_setgid setgid "libc.so"
    //go:cgo_import_dynamic libc_sethostname sethostname "libc.so"
    //go:cgo_import_dynamic libc_setpgid setpgid "libc.so"
    //go:cgo_import_dynamic libc_setpriority setpriority "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  10. src/syscall/exec_bsd.go

    type SysProcAttr struct {
    	Chroot     string      // Chroot.
    	Credential *Credential // Credential.
    	Ptrace     bool        // Enable tracing.
    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top