- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 249 for synchronize (0.06 sec)
-
src/test/java/jcifs/ACETest.java
assertTrue(ACE.READ_CONTROL >= 0x00010000 && ACE.READ_CONTROL <= 0x00FF0000, "READ_CONTROL should be in standard rights range"); assertTrue(ACE.SYNCHRONIZE >= 0x00010000 && ACE.SYNCHRONIZE <= 0x00FF0000, "SYNCHRONIZE should be in standard rights range"); // Generic rights should be in bits 28-31 (0xF0000000)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Queues.java
* * @param queue the queue to be wrapped in a synchronized view * @return a synchronized view of the specified queue * @since 14.0 */ @J2ktIncompatible // Synchronized public static <E extends @Nullable Object> Queue<E> synchronizedQueue(Queue<E> queue) { return Synchronized.queue(queue, null); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.1K bytes - Viewed (0) -
.github/workflows/docs.yml
name: docs on: push: branches: - master pull_request: types: [opened, labeled, unlabeled, synchronize] permissions: contents: read env: GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" jobs: test_docs: permissions: checks: write # for actions/upload-artifact runs-on: ubuntu-latest
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 07:15:58 UTC 2025 - 987 bytes - Viewed (0) -
.github/workflows/labeler.yml
name: Labels on: pull_request_target: types: - opened - synchronize - reopened # For label-checker - labeled - unlabeled jobs: labeler: permissions: contents: read pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/labeler@v5 if: ${{ github.event.action != 'labeled' && github.event.action != 'unlabeled' }}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Oct 07 20:11:20 UTC 2024 - 828 bytes - Viewed (1) -
android/guava/src/com/google/common/collect/Queues.java
* * @param queue the queue to be wrapped in a synchronized view * @return a synchronized view of the specified queue * @since 14.0 */ @J2ktIncompatible // Synchronized public static <E extends @Nullable Object> Queue<E> synchronizedQueue(Queue<E> queue) { return Synchronized.queue(queue, null); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.3K bytes - Viewed (0) -
.github/workflows/detect-conflicts.yml
name: "Conflict detector" on: push: pull_request_target: types: [synchronize] jobs: main: permissions: contents: read pull-requests: write runs-on: ubuntu-latest steps: - name: Check if PRs have merge conflicts uses: eps1lon/actions-label-merge-conflict@v3 with: dirtyLabel: "conflicts" repoToken: "${{ secrets.GITHUB_TOKEN }}"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:33:44 UTC 2025 - 499 bytes - Viewed (0) -
.github/workflows/containers.yml
name: containers on: push: branches: - master pull_request: types: [opened, labeled, unlabeled, synchronize] permissions: contents: read env: GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" jobs: test_containers: permissions: checks: write # for actions/upload-artifact runs-on: ubuntu-latest
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 07:15:58 UTC 2025 - 872 bytes - Viewed (0) -
.github/workflows/test-redistribute.yml
name: Test Redistribute on: push: branches: - master pull_request: types: - opened - synchronize jobs: test-redistribute: runs-on: ubuntu-latest strategy: matrix: package: - fastapi - fastapi-slim steps: - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJson(github) }}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
int WRITE_DAC = 0x00040000; // 18 /** * Permission to change the owner in the security descriptor */ int WRITE_OWNER = 0x00080000; // 19 /** * Permission to synchronize with the file */ int SYNCHRONIZE = 0x00100000; // 20 /** * Generic all permissions */ int GENERIC_ALL = 0x10000000; // 28 /** * Generic execute permission */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
int READ_CONTROL = 0x00020000; // 17 /** Write DAC access right */ int WRITE_DAC = 0x00040000; // 18 /** Write owner access right */ int WRITE_OWNER = 0x00080000; // 19 /** Synchronize access right */ int SYNCHRONIZE = 0x00100000; // 20 /** Generic all access right */ int GENERIC_ALL = 0x10000000; // 28 /** Generic execute access right */ int GENERIC_EXECUTE = 0x20000000; // 29
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0)