Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/types2/call.go

    	x.mode = invalid
    	x.expr = e
    }
    
    // use type-checks each argument.
    // Useful to make sure expressions are evaluated
    // (and variables are "used") in the presence of
    // other errors. Arguments may be nil.
    // Reports if all arguments evaluated without error.
    func (check *Checker) use(args ...syntax.Expr) bool { return check.useN(args, false) }
    
    // useLHS is like use, but doesn't "use" top-level identifiers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/go/types/call.go

    	x.mode = invalid
    	x.expr = e
    }
    
    // use type-checks each argument.
    // Useful to make sure expressions are evaluated
    // (and variables are "used") in the presence of
    // other errors. Arguments may be nil.
    // Reports if all arguments evaluated without error.
    func (check *Checker) use(args ...ast.Expr) bool { return check.useN(args, false) }
    
    // useLHS is like use, but doesn't "use" top-level identifiers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. docs/es/docs/async.md

    cálculo con `def` simple para una pequeña ganancia de rendimiento (aproximadamente 100 nanosegundos), ten en cuenta que en **FastAPI** el efecto sería bastante opuesto. En estos casos, es mejor usar `async def` a menos que tus *path operation functions* usen un código que realice el bloqueo <abbr title="Input/Output: disk reading or writing, network communications.">I/O</abbr>.
    
    Aún así, en ambas situaciones, es probable que **FastAPI** sea [aún más rápido](index.md#rendimiento){.Internal-link...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top