Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,713 for 2$ (0.02 sec)

  1. cmd/testdata/config/2.yaml

    Anis Eleuch <******@****.***> 1701941636 -0800
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 869 bytes
    - Viewed (0)
  2. doc/next/2-language.md

    Dmitri Shuralyov <******@****.***> 1721666689 -0400
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jul 22 17:55:04 UTC 2024
    - 41 bytes
    - Viewed (0)
  3. doc/initial/2-language.md

    Jonathan Amsterdam <******@****.***> 1705624488 -0500
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 41 bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/BSD-2-Clause.txt

    modification, are permitted provided that the following conditions
    are met:
    
    1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
    
    2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VGATHERDPD 960(R15)(X10*2), K6, X20 // 6282fd0e92645778
    	VGATHERDPD 1280(R15)(X0*2), K6, X10 // 6252fd0e92944700050000
    	VGATHERDPD 360(R15)(X30*2), K6, Y20 // 6282fd269264772d
    	VGATHERDPD 640(R15)(X20*2), K6, Y10 // 6252fd2692546750
    	VGATHERDPD 960(R15)(X10*2), K6, Y20 // 6282fd2e92645778
    	VGATHERDPD 1280(R15)(X0*2), K6, Y10 // 6252fd2e92944700050000
    	VGATHERDPD 360(R15)(Y30*2), K6, Z20 // 6282fd469264772d
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  6. .github/workflows/mint/minio-pools.yaml

    ## For custom volumes replace with volume driver configuration.
    volumes:
      pdata1-1:
      pdata1-2:
      pdata2-1:
      pdata2-2:
      pdata3-1:
      pdata3-2:
      pdata4-1:
      pdata4-2:
      pdata5-1:
      pdata5-2:
      pdata6-1:
      pdata6-2:
      pdata7-1:
      pdata7-2:
      pdata8-1:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte b2 = DECODE_TABLE[inData.charAt(inIndex + 2)];
            final byte b3 = DECODE_TABLE[inData.charAt(inIndex + 3)];
            outData[outIndex] = (byte) (b0 << 2 & 0xfc | b1 >> 4 & 0x3);
            outData[outIndex + 1] = (byte) (b1 << 4 & 0xf0 | b2 >> 2 & 0xf);
            outData[outIndex + 2] = (byte) (b2 << 6 & 0xc0 | b3 & 0x3f);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. internal/mountinfo/mountinfo_linux_test.go

    		}
    		mp = mountInfo{"/dev/2", "/path/to/2", "type2", []string{"flags", "1", "2=3"}, "2", "2"}
    		if !mountPointsEqual(mounts[2], mp) {
    			t.Errorf("got unexpected mountInfo[2]: %#v", mounts[2])
    		}
    	}
    	// Error cases where parsing fails with invalid Freq and Pass params.
    	{
    		errorCases := []string{
    			"/dev/1 /path/to/mount type flags a 0\n",
    			"/dev/2 /path/to/mount type flags 0 b\n",
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. tests/scopes_test.go

    	DB.Scopes(NameIn1And2).Find(&users1)
    	if len(users1) != 2 {
    		t.Errorf("Should found two users's name in 1, 2, but got %v", len(users1))
    	}
    
    	DB.Scopes(NameIn1And2, NameIn2And3).Find(&users2)
    	if len(users2) != 1 {
    		t.Errorf("Should found one user's name is 2, but got %v", len(users2))
    	}
    
    	DB.Scopes(NameIn([]string{users[0].Name, users[2].Name})).Find(&users3)
    	if len(users3) != 2 {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

          String[] suffix = {"h", "i"};
    
          String[] all = new String[2 + elements.length + 2];
          arraycopy(prefix, 0, all, 0, 2);
          arraycopy(elements, 0, all, 2, elements.length);
          arraycopy(suffix, 0, all, 2 + elements.length, 2);
    
          return ImmutableList.copyOf(all).subList(2, elements.length + 2);
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top