Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Ci (0.62 sec)

  1. src/main/java/jcifs/smb1/util/Hexdump.java

            int i;
            int si = 0;
            int ci = 0;
    
            do {
                toHexChars(si, c, ci, 5);
                ci += 5;
                c[ci] = ':';
                ci++;
                do {
                    if (si == length) {
                        final int n = 16 - s;
                        System.arraycopy(SPACE_CHARS, 0, c, ci, n * 3);
                        ci += n * 3;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. .ci/README.md

    CI configuration for Elasticsearch
    ==================================
    
    Layout and Syntax
    -----------------
    
    CI is run by Jenkins at [elasticsearch-ci](https://elasticsearch-ci.elastic.co/).
    Jobs live in the [jobs.t](jobs.t) directory, these are defined in YML using a syntax 
    simmilar to [JJB](https://elasticsearch-ci.elastic.co/view/Elasticsearch%20master/).
    Macros are not allowed, and each job must be defined in its own file.
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Wed Nov 13 15:12:00 UTC 2019
    - 679 bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

            byte[] ctx = new byte[0x40];
            int ci = 0;
            SMBUtil.writeInt4(0, ctx, ci); // Next = 0
            ci += 4;
            SMBUtil.writeInt2(0x10, ctx, ci); // NameOffset
            SMBUtil.writeInt2(4, ctx, ci + 2); // NameLength
            ci += 4;
            SMBUtil.writeInt2(0, ctx, ci); // Reserved
            SMBUtil.writeInt2(0x20, ctx, ci + 2); // DataOffset
            ci += 4;
            SMBUtil.writeInt4(8, ctx, ci); // DataLength
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. .ci/jobs.t/elastic+elasticsearch+branch-consistency.yml

        triggers:
          - timed: "H 7 * * *"
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
              properties-content: |
                JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
          - shell: |
              #!/usr/local/bin/runbld --redirect-stderr
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Thu May 06 21:46:09 UTC 2021
    - 572 bytes
    - Viewed (0)
  5. .ci/jobs.t/defaults.yml

    #          allow-empty-results: true
          # Upload additional logs
          - google-cloud-storage:
              credentials-id: 'elasticsearch-ci-gcs-plugin'
              uploads:
                - classic:
                    file-pattern: 'build/*.tar.bz2'
                    storage-location: 'gs://elasticsearch-ci-artifacts/jobs/$JOB_NAME'
                    share-publicly: false
                    upload-for-failed-jobs: true
                    show-inline: true
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Wed Sep 29 15:38:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. .ci/init.gradle

    if (buildCacheUrl) {
      final Map<String, String> buildCacheCredentials = vault.logical()
        .read("secret/elasticsearch-ci/gradle-build-cache")
        .getData()
      gradle.settingsEvaluated { settings ->
        settings.buildCache {
          local {
            // Disable the local build cache in CI since we use ephemeral workers and it incurs an IO penalty
            enabled = false
          }
          remote(HttpBuildCache) {
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Wed Nov 13 10:14:04 UTC 2019
    - 3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            int ci;
    
            if (username != null) {
                ci = username.indexOf('@');
                if (ci > 0) {
                    domain = username.substring(ci + 1);
                    username = username.substring(0, ci);
                } else {
                    ci = username.indexOf('\\');
                    if (ci > 0) {
                        domain = username.substring(0, ci);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  8. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
        runs-on: ${{ matrix.os }}
    
        strategy:
          matrix:
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 677 bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

        }
    
        private static boolean isDockerAvailable() {
            try {
                // Check if we're in CI environment (GitHub Actions specifically)
                String ci = System.getenv("CI");
                String githubActions = System.getenv("GITHUB_ACTIONS");
                boolean isCI = "true".equals(ci) || "true".equals(githubActions);
    
                // First, check if docker command is available
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  10. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
        env:
          PARENT_BRANCH: main
    
        steps:
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun May 18 03:08:24 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top