Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 124 of 124 for permutation (0.15 sec)

  1. pilot/pkg/networking/core/tls.go

    		// an outbound listener for each pod in a headless service. There is thus no need to do a SNI match. It saves us from having to
    		// generate expensive permutations of the host name just like RDS does..
    		// NOTE that we cannot have two services with the same VIP as our listener build logic will treat it as a collision and
    		// ignore one of the services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/DES.java

            int count = length / 8;
    
            for (int i=0; i<count; i++)
                encrypt(cipherText, i*8, clearText, i*8);
    
            return clearText;
        }
    
    
        // Tables, permutations, S-boxes, etc.
    
        private static byte[] bytebit = {
            (byte)0x80, (byte)0x40, (byte)0x20, (byte)0x10,
            (byte)0x08, (byte)0x04, (byte)0x02, (byte)0x01
        };
        private static int[] bigbyte = {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      /** Non-NPE RuntimeException. */
      public static class FooException extends RuntimeException {
        private static final long serialVersionUID = 1L;
      }
    
      /**
       * Class for testing all permutations of static/non-static one-argument methods using
       * methodParameter().
       */
      @SuppressWarnings("unused") // used by reflection
      public static class OneArg {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf_test.go

    	//   - things work for both referenced and unreferenced params
    	//   - things work for named return values un-named return vals
    	//
    	// The scenarios below don't cover all possible permutations and
    	// combinations, but they hit a bunch of the high points.
    
    	const prog = `
    package main
    
    // First testcase. All input params in registers, all params used.
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top