Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 151274 (0.03 sec)

  1. cmd/postpolicyform_test.go

    			fv:      defaultFormVals.Clone().Set(xhttp.AmzCredential, "incorrect"),
    			wantErr: policyCondFailedErr,
    		},
    		{
    			name:    "incorrect metadata uuid",
    			fv:      defaultFormVals.Clone().Set(xhttp.AmzMetaUUID, "151274"),
    			wantErr: "Invalid according to Policy: Policy Condition failed: [eq, $x-amz-meta-uuid, 14365123651274]",
    		},
    		{
    			name:    "unknown key XAmzMetaName is error as it does not appear in policy",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. .github/workflows/build.yml

            uses: actions/checkout@v5
    
          - name: Configure JDKs
            uses: actions/setup-java@v5
            with:
              distribution: 'zulu'
              java-version: |
                11
                17
                24
    
          - name: Allow incompatible JVM versions
            run: |
              echo 'kotlin.jvm.target.validation.mode=ignore' >> ./gradle.properties
    
          - name: Setup Gradle
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/LongMath.java

       * mod(-1, 4) == 3
       * mod(-8, 4) == 0
       * mod(8, 4) == 0
       * }
       *
       * @throws ArithmeticException if {@code m <= 0}
       * @see <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html#jls-15.17.3">
       *     Remainder Operator</a>
       */
      @GwtIncompatible // TODO
      public static int mod(long x, int m) {
        // Cast is safe because the result is guaranteed in the range [0, m)
        return (int) mod(x, (long) m);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java

                bb.putShort((short) 0);
                bb.putShort((short) 0);
    
                buffer.decode(testBuffer, 0, testBuffer.length);
    
                assertEquals(7, buffer.getPathConsumed()); // 15 / 2 = 7 (integer division)
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X1260,
        X1261,
        X1262,
        X1263,
        X1264,
        X1265,
        X1266,
        X1267,
        X1268,
        X1269,
        X1270,
        X1271,
        X1272,
        X1273,
        X1274,
        X1275,
        X1276,
        X1277,
        X1278,
        X1279,
        X1280,
        X1281,
        X1282,
        X1283,
        X1284,
        X1285,
        X1286,
        X1287,
        X1288,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top