Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for doubt (0.08 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java

         * when it fails. All this method does is provide a better, consistent, error message.
         *
         * This should be used whenever there is a chance the cast could fail. If in doubt, use this.
         *
         * @param outputType The type to cast the input to
         * @param object The object to be cast (must not be {@code null})
         * @param <O> The type to be cast to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

    import javax.servlet.http.HttpServletResponse
    
    @CompileStatic
    class NtlmAuthenticator extends LoginAuthenticator {
        static final String NTLM_AUTH_METHOD = 'NTLM'
    
        // There is absolutely no doubt that no one should ever on a map like that
        // and that a proper implementation of an NTLM authenticator shouldn't do this
        // but those are test fixtures and I couldn't find a better way to do this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/os/zero_copy_linux.go

    	// Streams benefit the most from the splice(2), non-streams are not even supported in old kernels
    	// where splice(2) will just return EINVAL; newer kernels support non-streams like UDP, but I really
    	// doubt that splice(2) could help non-streams, cuz they usually send small frames respectively
    	// and one splice call would result in one frame.
    	// splice(2) is suitable for large data but the generation of fragments defeats its edge here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. ci/official/utilities/setup.sh

    # functions (except for tfrun); use dedicated scripts instead and reference them
    # specifically. Use your best judgment to keep the scripts in this directory
    # lean and easy to follow. When in doubt, remember that for CI scripts, "keep it
    # simple" is MUCH more important than "don't repeat yourself."
    
    # -e: abort script if one command fails
    # -u: error if undefined variable used
    # -x: log all commands
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/net/tcpsock_posix.go

    	// originating local address, sometimes it picks one that is already in use.
    	// So if the error is EADDRNOTAVAIL, we have to try again too, just for
    	// a different reason.
    	//
    	// The kernel socket code is no doubt enjoying watching us squirm.
    	for i := 0; i < 2 && (laddr == nil || laddr.Port == 0) && (selfConnect(fd, err) || spuriousENOTAVAIL(err)); i++ {
    		if err == nil {
    			fd.Close()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
      optional string singularResource = 4;
    
      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
      optional string singularResource = 4;
    
      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

        // TODO: Use structural type comparison? We can potentially ignore components which don't factor into overload resolution, such as type
        //       annotations, because we only need to pick one FIR callable without a reasonable doubt and ambiguities cannot originate from
        //       libraries.
        override fun isMatchingCallableDeclaration(psi: KtCallableDeclaration, fir: FirCallableDeclaration): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
      optional string singularResource = 4;
    
      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    	// The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top