Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for rc1 (0.08 sec)

  1. src/crypto/md5/md5block_arm.s

    	ROUND4(Ra, Rb, Rc, Rd,  8,	6, Rc0)
    	ROUND4(Rd, Ra, Rb, Rc, 15, 10, Rc1)
    	ROUND4(Rc, Rd, Ra, Rb,  6, 15, Rc2)
    	ROUND4(Rb, Rc, Rd, Ra, 13, 21, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND4(Ra, Rb, Rc, Rd,  4,	6, Rc0)
    	ROUND4(Rd, Ra, Rb, Rc, 11, 10, Rc1)
    	ROUND4(Rc, Rd, Ra, Rb,  2, 15, Rc2)
    	ROUND4(Rb, Rc, Rd, Ra,  9, 21, Rc3)
    
    	MOVW	dig+0(FP), Rt0
    	MOVM.IA (Rt0), [Rc0,Rc1,Rc2,Rc3]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512block_arm64.s

    #define SHA512ROUND(i0, i1, i2, i3, i4, rc0, rc1, in0, in1, in2, in3, in4) \
    	VLD1.P	16(R4), [rc1.D2] \
    	SHA512TRANS(i0, i1, i2, i3, i4, rc0, in0) \
    	VEXT	$8, in4.B16, in3.B16, V5.B16 \
    	SHA512SU0	in1.D2, in0.D2 \
    	SHA512H	V7.D2, V6, i3 \
    	SHA512SU1	V5.D2, in2.D2, in0.D2 \
    	VADD	i3.D2, i1.D2, i4.D2 \
    	SHA512H2	i0.D2, i1, i3
    
    #define SHA512ROUND_NO_UPDATE(i0, i1, i2, i3, i4, rc0, rc1, in0) \
    	VLD1.P	16(R4), [rc1.D2] \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. .github/workflows/notify-on-rc-for-manual-test.yml

    name: IDE Experience team notifier
    run-name: Notify the IDE Experience team about new RCs for manual testing
    on:
      push:
        tags:
          - 'v*.*.*-RC1'
    
    permissions: {}
    
    jobs:
      send-slack-notification:
        runs-on: ubuntu-latest
        steps:
          - name: Send Slack notification about new RCs for manual testing
            id: slack
            uses: slackapi/slack-github-action@v1.23.0
            with:
              payload: |
                {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/OkHttp.kt

     * limitations under the License.
     */
    package okhttp3
    
    import kotlin.jvm.JvmField
    import okhttp3.internal.CONST_VERSION
    
    object OkHttp {
      /**
       * This is a string like "4.5.0-RC1", "4.5.0", or "4.6.0-SNAPSHOT" indicating the version of
       * OkHttp in the current runtime. Use this to include the OkHttp version in custom `User-Agent`
       * headers.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            assertVersionOlder("2.0.1-xyz-SNAPSHOT", "2.0.1-123-SNAPSHOT");
        }
    
        @Test
        void testSnapshotVsReleases() {
            assertVersionOlder("1.0-RC1", "1.0-SNAPSHOT");
            assertVersionOlder("1.0-rc1", "1.0-SNAPSHOT");
            assertVersionOlder("1.0-rc-1", "1.0-SNAPSHOT");
        }
    
        @Test
        void testHashCode() {
            ArtifactVersion v1 = newArtifactVersion("1");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. ci/official/upload.sh

    DOWNLOADS="$(mktemp -d)"
    mkdir -p "$DOWNLOADS"
    gsutil -m rsync -r "$TFCI_ARTIFACT_STAGING_GCS_URI" "$DOWNLOADS"
    ls "$DOWNLOADS"
    
    # Upload all build artifacts to e.g. gs://tensorflow/versions/2.16.0-rc1 (releases) or
    # gs://tensorflow/nightly/2.16.0-dev20240105 (nightly), overwriting previous values.
    if [[ "$TFCI_ARTIFACT_FINAL_GCS_ENABLE" == 1 ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

     *   </li>
     * <li>a hyphen usually precedes a qualifier, and is always less important than digits/number, for example
     *   {@code 1.0.RC2 < 1.0-RC3 < 1.0.1}; but prefer {@code 1.0.0-RC1} over {@code 1.0.0.RC1}, and more
     *   generally: {@code 1.0.X2 < 1.0-X3 < 1.0.1} for any string {@code X}; but prefer {@code 1.0.0-X1}
     *   over {@code 1.0.0.X1}.</li>
     * </ul>
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. plugin/pkg/admission/gc/gc_admission_test.go

    	}
    
    	getFalseVar := func() *bool {
    		ret := false
    		return &ret
    	}
    	blockRC1 := metav1.OwnerReference{
    		APIVersion:         "v1",
    		Kind:               "ReplicationController",
    		Name:               "rc1",
    		BlockOwnerDeletion: getTrueVar(),
    	}
    	blockRC2 := metav1.OwnerReference{
    		APIVersion:         "v1",
    		Kind:               "ReplicationController",
    		Name:               "rc2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_4x.md

        these in logs, metrics, and even test cases to confirm your cache headers are configured as
        expected.
    
     *  New: Constant string `okhttp3.VERSION`. This is a string like "4.5.0-RC1", "4.5.0", or
        "4.6.0-SNAPSHOT" indicating the version of OkHttp in the current runtime. Use this to include
        the OkHttp version in custom `User-Agent` headers.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    		{
    			Kind:       "ReplicationController",
    			Name:       "rc1",
    			UID:        "1",
    			APIVersion: "v1",
    			Controller: pointer.Bool(true),
    		},
    	})
    	rc1Pod2 := getPod("rc1Pod2", []metav1.OwnerReference{
    		{
    			Kind:       "ReplicationController",
    			Name:       "rc1",
    			UID:        "1",
    			APIVersion: "v1",
    			Controller: pointer.Bool(false),
    		},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top