Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for whatis1 (0.1 sec)

  1. docs/en/docs/advanced/security/http-basic-auth.md

        # Return some error
        ...
    ```
    
    But by using the `secrets.compare_digest()` it will be secure against a type of attacks called "timing attacks".
    
    ### Timing Attacks
    
    But what's a "timing attack"?
    
    Let's imagine some attackers are trying to guess the username and password.
    
    And they send a request with a username `johndoe` and a password `love123`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    // trie generated by "go run gen*.go". It is shared by both the generator
    // program and the resultant package. Sharing is achieved by the generator
    // copying gen_trieval.go to trieval.go and changing what's above this comment.
    
    // info holds case information for a single rune. It is the value returned
    // by a trie lookup. Most mapping information can be stored in a single 16-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/debug/pe/symbol.go

    // number of relocations + line numbers, as well as COMDAT info. See
    // https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#auxiliary-format-5-section-definitions
    // for more on what's going on here.
    type COFFSymbolAuxFormat5 struct {
    	Size           uint32
    	NumRelocs      uint16
    	NumLineNumbers uint16
    	Checksum       uint32
    	SecNum         uint16
    	Selection      uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

      }
    
      @Override
      public Collection<V> values() {
        return delegate.values();
      }
    
      @CanIgnoreReturnValue
      private <T> T checkValid(T t) {
        // a ClassCastException is what's supposed to happen!
        @SuppressWarnings("unchecked")
        K k = (K) t;
        int unused = comparator().compare(k, k);
        return t;
      }
    
      @Override
      public boolean equals(@Nullable Object obj) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/handler.go

    	NonGoRestfulMux *mux.PathRecorderMux
    
    	// Director is here so that we can properly handle fall through and proxy cases.
    	// This looks a bit bonkers, but here's what's happening.  We need to have /apis handling registered in gorestful in order to have
    	// swagger generated for compatibility.  Doing that with `/apis` as a webservice, means that it forcibly 404s (no defaulting allowed)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    For any non-trivial change, we need to be able to answer these questions:
    
    * Why is this change done? What's the use case?
    * For user facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    * How will it roughly be implemented? We'll happily provide code pointers to save you time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/net/tcpsock_posix.go

    	// Since this code (selfConnect) is already trying to work around
    	// a problem, we make sure if this happens we recognize trouble and
    	// ask the DialTCP routine to try again.
    	// TODO: try to understand what's really going on.
    	if fd.laddr == nil || fd.raddr == nil {
    		return true
    	}
    	l := fd.laddr.(*TCPAddr)
    	r := fd.raddr.(*TCPAddr)
    	return l.Port == r.Port && l.IP.Equal(r.IP)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_amd64.go

    		// CRC(I, ABC) = CRC(CRC(I, AB), O) xor CRC(0, C)
    		crc = castagnoliShift(castagnoliSSE42TableK1, crcAB) ^ crcC
    		p = p[castagnoliK1*3:]
    	}
    
    	// Use the simple implementation for what's left.
    	crc = castagnoliSSE42(crc, p)
    	return ^crc
    }
    
    func archAvailableIEEE() bool {
    	return cpu.X86.HasPCLMULQDQ && cpu.X86.HasSSE41
    }
    
    var archIeeeTable8 *slicing8Table
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/DuplexTest.kt

        assumeNotWindows()
        enableProtocol(Protocol.HTTP_2)
        val body =
          MockStreamHandler()
            .exhaustResponse()
            .receiveRequest("hey\n")
            .receiveRequest("whats going on\n")
            .exhaustRequest()
        server.enqueue(
          MockResponse.Builder()
            .clearHeaders()
            .addHeader("h1", "v1")
            .addHeader("h2", "v2")
            .streamHandler(body)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            }
    
            injectPluginDeclarationFromProject(plugin, project);
    
            // If there is no version to be found then we need to look in the repository metadata for
            // this plugin and see what's specified as the latest release.
            //
            if (plugin.getVersion() == null) {
                resolvePluginVersion(plugin, session, project);
            }
    
            return pluginManager.getMojoDescriptor(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top