Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for useN (0.08 sec)

  1. src/os/user/user.go

    	groupImplemented     = true
    	groupListImplemented = true
    )
    
    // User represents a user account.
    type User struct {
    	// Uid is the user ID.
    	// On POSIX systems, this is a decimal number representing the uid.
    	// On Windows, this is a security identifier (SID) in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Uid string
    	// Gid is the primary group ID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/user.xml

    under the License.
    -->
    
    <toolchains>
      <toolchain>
         <type>basic</type>
         <configuration>
           <user>true</user>
         </configuration>
      </toolchain>
      <toolchain>
         <type>rare</type>
         <configuration>
           <user>true</user>
         </configuration>
      </toolchain>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Oct 13 14:10:22 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. test/used.go

    	x < x                  // ERROR "x < x .* not used"
    	x >= x                 // ERROR "x >= x .* not used"
    	x > x                  // ERROR "x > x .* not used"
    	*tp                    // ERROR "\*tp .* not used"
    	slice[0]               // ERROR "slice\[0\] .* not used"
    	m[1]                   // ERROR "m\[1\] .* not used"
    	len(slice)             // ERROR "len\(slice\) .* not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 08:39:17 UTC 2020
    - 6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/user/user.go

    limitations under the License.
    */
    
    package user
    
    // Info describes a user that has been authenticated to the system.
    type Info interface {
    	// GetName returns the name that uniquely identifies this user among all
    	// other active users.
    	GetName() string
    	// GetUID returns a unique value for a particular user that will change
    	// if the user is removed from the system and another user is added with
    	// the same name.
    	GetUID() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 16:21:55 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/exentity/User.java

     */
    package org.codelibs.fess.es.user.exentity;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Base64;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.FessUser;
    import org.codelibs.fess.es.user.bsentity.BsUser;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_user.user/user.bulk

    {"index":{"_index":"fess_user.user","_id":"YWRtaW4="}}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 12 13:23:26 UTC 2023
    - 166 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/testng-suitexmlbuilder/groovy/src/main/java/org/gradle/testng/User.java

    package org.gradle.testng;
    
    public interface User
    {
        String getFirstName();
    
        String getLastName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 108 bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess_user.user/user.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/workcmd/use.go

    	haveDirs := make(map[string][]string) // absolute → original(s)
    	for _, use := range wf.Use {
    		var abs string
    		if filepath.IsAbs(use.Path) {
    			abs = filepath.Clean(use.Path)
    		} else {
    			abs = filepath.Join(workDir, use.Path)
    		}
    		haveDirs[abs] = append(haveDirs[abs], use.Path)
    	}
    
    	// keepDirs maps each absolute path to keep to the literal string to use for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue24161arg/use.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin
    
    package issue24161arg
    
    /*
    #cgo LDFLAGS: -framework CoreFoundation
    #include <CoreFoundation/CoreFoundation.h>
    */
    import "C"
    import "testing"
    
    func Test(t *testing.T) {
    	a := test24161array()
    	C.CFArrayCreateCopy(0, a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 398 bytes
    - Viewed (0)
Back to top