Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 209 for Bush (0.14 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                    nodes.push(currentList);
                    return true;
                }
                if (elementName.equals("dt")) {
                    if (currentItem != null) {
                        nodes.pop();
                    }
                    currentItem = document.createElement("varlistentry");
                    nodes.push(currentItem);
                    nodes.push(document.createElement("term"));
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 29.3K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    ```
    git commit -am 'Add some feature'
    ```
    
    ### Push to the branch
    
    Push your locally committed changes to the remote origin (your fork)
    
    ```
    git push origin my-new-feature
    ```
    
    ### Create a Pull Request
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  3. .github/workflows/trusted_partners.js

          assignees.push('cheshire', 'gcforster', 'reedwm', 'chsigg', 'xla-rotation');
        }
        if (lowercased_title.includes('tf')) {
          assignees.push('rohan100jain', 'bfontain');
        }
      }
      if (lowercased_title.includes('linaro') && domain.includes('linaro.org')) {
        if (lowercased_title.includes('arm_ci')) {
          assignees.push('nitins17', 'penpornk');
        }
      }
    JavaScript
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 07 13:52:04 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  4. .github/workflows/sigbuild-docker-presubmit.yml

            id: date
          -
            name: Build containers, and push to GCR only if the 'build and push to gcr.io for staging' label is applied
            id: docker_build
            uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v3.2.0
            with:
              push: ${{ contains(github.event.pull_request.labels.*.name, 'build and push to gcr.io for staging') }}
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Oct 23 18:43:43 GMT 2023
    - 4K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/jquery-3.6.3.min.js

    selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+E+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+E+"+*").length||y.push(".#.+[+...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 87.8K bytes
    - Viewed (3)
  6. deploy_website.sh

    # Build the site and push the new files up to GitHub
    python3 -m venv venv
    source venv/bin/activate
    pip install mkdocs-material mkdocs-redirects
    mkdocs gh-deploy
    
    # Restore Javadocs from 1.x, 2.x, and 3.x.
    git checkout gh-pages
    git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff
    git cherry-pick c695732f1d4aea103b826876c077fbfea630e244
    git push --set-upstream origin gh-pages
    
    # Delete our temp folder
    Shell Script
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Nov 20 15:26:12 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  7. docs/en/docs/js/custom.js

                                // so put an additional one
                                buffer.push("");
                            }
                            const bufferValue = buffer.join("<br>");
                            dataValue["value"] = bufferValue;
                            useLines.push(dataValue);
                            buffer = [];
                        }
                    }
    JavaScript
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 6.6K bytes
    - Viewed (0)
  8. .github/workflows/go-fips.yml

              WORKDIR /minio
              ENV GOEXPERIMENT=boringcrypto
              RUN make
              EOF
    
          - name: Build
            uses: docker/build-push-action@v3
            with:
              context: .
              file: Dockerfile.fips.test
              push: false
              load: true
              tags: minio/fips-test:latest
    
          # This should fail if grep returns non-zero exit
          - name: Test binary
            run: |
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 28 23:44:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  9. docs/hotfixes.md

    ```
    λ CRED_DIR=/media/builder/minio make hotfix-push
    ```
    
    #### Builds the hotfix container and pushes to docker.io/minio/minio
    
    ```
    λ CRED_DIR=/media/builder/minio make docker-hotfix-push
    ```
    
    #### Builds the hotfix container and pushes to registry.min.dev/<customer>/minio
    
    ```
    λ REPO="registry.min.dev/<customer>" CRED_DIR=/media/builder/minio make docker-hotfix-push
    ```
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Feb 14 21:36:02 GMT 2024
    - 5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/SynchronizedDequeTest.java

          assertTrue(Thread.holdsLock(mutex));
          return delegate.removeLastOccurrence(o);
        }
    
        @Override
        public void push(E e) {
          assertTrue(Thread.holdsLock(mutex));
          delegate.push(e);
        }
    
        @Override
        public E pop() {
          assertTrue(Thread.holdsLock(mutex));
          return delegate.pop();
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 7.4K bytes
    - Viewed (0)
Back to top