Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 209 for Bush (0.17 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                        if (...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device.cc

              absl::get<TFE_TensorHandle*>(inputs[i]), status));
        }
        std::vector<MaybeParallelTensorOwned> result_content;
        result_content.reserve(1);
        result_content.push_back(ParallelTensor::FromTensorHandles(
            parallel_device, std::move(components), status));
        if (TF_GetCode(status) != TF_OK) return result;
        result.emplace(std::move(result_content));
        return result;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 29 22:05:31 GMT 2023
    - 18.3K bytes
    - Viewed (0)
  3. .cm/plugins/filters/categorize/index.js

            [...fileOwners.keys()].forEach(platform => {
                const files = fileOwners.get(platform);
                if (files.includes(fileMetadata.file)) {
                    result.get(platform).files.push(fileMetadata.file);
                }
            });
        });
    
        console.log("categorize: ");
        console.log([...result.values()]);
        return result;
    }
    
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. .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'
    
    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: |
                {
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 16 08:48:39 GMT 2023
    - 1008 bytes
    - Viewed (0)
  5. .github/workflows/maven.yml

    # specific language governing permissions and limitations
    # under the License.
    
    name: Java CI
    
    on: [push, pull_request]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
    Others
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  6. .github/workflows/gradle-wrapper-validation.yml

    name: "Validate Gradle Wrapper"
    on: [push, pull_request]
    
    permissions:
      contents: read
    
    jobs:
      validation:
        name: "Validation"
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
    Others
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:33:50 GMT 2024
    - 348 bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device_lib_test.cc

      ASSERT_TRUE(TF_GetCode(status.get()) == TF_OK) << TF_Message(status.get());
    
      std::vector<TensorHandlePtr> vector_handles;
      vector_handles.reserve(2);
      vector_handles.push_back(std::move(two_vector));
      vector_handles.push_back(std::move(three_vector));
      std::unique_ptr<ParallelTensor> unknown_length_vector =
          ParallelTensor::FromTensorHandles(
              parallel_device, std::move(vector_handles), status.get());
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 08 23:47:35 GMT 2021
    - 15.3K bytes
    - Viewed (0)
  8. .github/workflows/arm-ci-extended.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    name: ARM CI Extended
    
    on:
      push:
        tags:
          - v2.**
      schedule:
        - cron: '0 4 * * *'
    
    permissions:
      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 05 10:24:16 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  9. .github/workflows/issue-on-pr-rollback.yml

    # limitations under the License.
    # ==============================================================================
    
    name: Creates a GitHub Issue when a PR Rolled back via Commit to Master
    on:
      push:
        branches:
          - master
          
    permissions: {}
    
    jobs:
      create-issue-on-pr-rollback:
        runs-on: ubuntu-latest
        permissions:
          contents: read
          issues: write
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Sep 12 16:40:29 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/modular_filesystem.cc

        plugin_status.reserve(files.size());
        for (int i = 0; i < files.size(); i++)
          plugin_status.push_back(TF_NewStatus());
        result = ops_->paths_exist(filesystem_.get(), translated_names.data(),
                                   files.size(), plugin_status.data());
        for (int i = 0; i < files.size(); i++) {
          status->push_back(StatusFromTF_Status(plugin_status[i]));
          TF_DeleteStatus(plugin_status[i]);
        }
      }
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 23.1K bytes
    - Viewed (0)
Back to top