Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 174 for setFid (0.18 sec)

  1. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

                IndexRequestBuilder indexRequestBuilder = new IndexRequestBuilder(client, IndexAction.INSTANCE);
                indexRequestBuilder.setIndex(indexName).setId(String.valueOf(i)).setCreate(true).setSource(source);
                bulkRequestBuilder.add(indexRequestBuilder);
            }
            bulkRequestBuilder.execute().actionGet();
            runner.refresh();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func Lchown(path string, uid int, gid int) (err error) { return syscall.EWINDOWS }
    func Fchown(fd Handle, uid int, gid int) (err error)   { return syscall.EWINDOWS }
    
    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    func Getegid() (egid int)                { return -1 }
    func Getgroups() (gids []int, err error) { return nil, syscall.EWINDOWS }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. helm-releases/minio-5.0.15.tgz

    false allowHostNetwork: false allowHostPID: false allowHostPorts: false allowPrivilegeEscala: true allowPrivilegedConta: false allowedCapabilities: [] readOnlyRootFilesyst: false defaultAddCapabiliti: [] requiredDropCapabili: - KILL - MKNOD - SETUID - SETGID fsGroup: type: MustRunAs ranges: - max: {{ .Values.securityContext.fsGroup }} min: {{ .Values.securityContext.fsGroup }} runAsUser: type: MustRunAs uid: {{ .Values.securityContext.runAsUser }} seLinuxContext: type: MustRunAs supplementalGroups:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jan 12 18:18:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setpgid(pid int, pgid int) (err error) {
    	_, _, e1 := RawSyscall(SYS_SETPGID, uintptr(pid), uintptr(pgid), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Setsid() (pid int, err error) {
    	r0, _, e1 := RawSyscall(SYS_SETSID, 0, 0, 0)
    	pid = int(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. helm-releases/minio-5.1.0.tgz

    false allowHostNetwork: false allowHostPID: false allowHostPorts: false allowPrivilegeEscala: true allowPrivilegedConta: false allowedCapabilities: [] readOnlyRootFilesyst: false defaultAddCapabiliti: [] requiredDropCapabili: - KILL - MKNOD - SETUID - SETGID fsGroup: type: MustRunAs ranges: - max: {{ .Values.securityContext.fsGroup }} min: {{ .Values.securityContext.fsGroup }} runAsUser: type: MustRunAs uid: {{ .Values.securityContext.runAsUser }} seLinuxContext: type: MustRunAs supplementalGroups:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 18:49:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. helm-releases/minio-5.2.0.tgz

    false allowHostNetwork: false allowHostPID: false allowHostPorts: false allowPrivilegeEscala: true allowPrivilegedConta: false allowedCapabilities: [] readOnlyRootFilesyst: false defaultAddCapabiliti: [] requiredDropCapabili: - KILL - MKNOD - SETUID - SETGID fsGroup: type: MustRunAs ranges: - max: {{ .Values.securityContext.fsGroup }} min: {{ .Values.securityContext.fsGroup }} runAsUser: type: MustRunAs uid: {{ .Values.securityContext.runAsUser }} seLinuxContext: type: MustRunAs supplementalGroups:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. cmd/erasure-sets.go

    	wg.Add(len(objSetMap))
    	for setIdx, objsGroup := range objSetMap {
    		go func(set *erasureObjects, group []delObj) {
    			defer wg.Done()
    			dobjects, errs := set.DeleteObjects(ctx, bucket, toNames(group), opts)
    			mu.Lock()
    			defer mu.Unlock()
    			for i, obj := range group {
    				delErrs[obj.origIndex] = errs[i]
    				delObjects[obj.origIndex] = dobjects[i]
    			}
    		}(s.sets[setIdx], objsGroup)
    	}
    	wg.Wait()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		mutex.Lock()
    		defer mutex.Unlock()
    		switch action.GetVerb() {
    		case "create":
    			if obj.GetUID() != "" {
    				return true, nil, errors.New("UID must not be set on create")
    			}
    			if obj.GetResourceVersion() != "" {
    				return true, nil, errors.New("ResourceVersion must not be set on create")
    			}
    			obj.SetUID(types.UID(fmt.Sprintf("UID-%d", uidCounter)))
    			uidCounter++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    func (om *fakeObjectManager) CreatePod(ctx context.Context, pod *v1.Pod) error {
    	defer om.createPodTracker.trackParallelRequests()
    	if err := om.createPodTracker.incWithOptionalError(); err != nil {
    		return err
    	}
    	pod.SetUID(types.UID(pod.Name + "-uid"))
    	return om.podsIndexer.Update(pod)
    }
    
    func (om *fakeObjectManager) GetPod(namespace, podName string) (*v1.Pod, error) {
    	return om.podsLister.Pods(namespace).Get(podName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SetNonblock", Func, 0},
    		{"Setdomainname", Func, 0},
    		{"Setegid", Func, 0},
    		{"Setenv", Func, 0},
    		{"Seteuid", Func, 0},
    		{"Setfsgid", Func, 0},
    		{"Setfsuid", Func, 0},
    		{"Setgid", Func, 0},
    		{"Setgroups", Func, 0},
    		{"Sethostname", Func, 0},
    		{"Setlogin", Func, 0},
    		{"Setpgid", Func, 0},
    		{"Setpriority", Func, 0},
    		{"Setprivexec", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top