Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Hosken (0.2 sec)

  1. .github/workflows/release-branch-cherrypick.yml

            committer: TensorFlow Release Automation <******@****.***>
            token: ${{ secrets.JENKINS_TOKEN }}
            base: ${{ github.event.inputs.release_branch }}
            branch: ${{ github.event.inputs.release_branch }}-${{ steps.cherrypick.outputs.SHORTSHA }}
            reviewers: learning-to-play
            body: |
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Sep 12 14:49:29 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem.h

          const std::string& fname, TransactionToken* token,
          std::unique_ptr<ReadOnlyMemoryRegion>* result) override;
      Status FileExists(const std::string& fname, TransactionToken* token) override;
      bool FilesExist(const std::vector<std::string>& files,
                      TransactionToken* token,
                      std::vector<Status>* status) override;
      Status GetChildren(const std::string& dir, TransactionToken* token,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.h

        TFE_CancellationManager*, TFE_CancellationToken token,
        const TFE_CancelCallback* c_callback, const char* callback_name);
    TF_CAPI_EXPORT extern bool TFE_CancellationManagerDeregisterCallback(
        TFE_CancellationManager*, TFE_CancellationToken token);
    TF_CAPI_EXPORT extern bool TFE_CancellationManagerTryDeregisterCallback(
        TFE_CancellationManager*, TFE_CancellationToken token);
    TF_CAPI_EXPORT extern void TFE_DeleteCancellationManager(
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// Starts a new transaction.
      ///
      /// An opaque transaction token is returned in `token`. Ownership of the token
      /// is in filesystem. Token will be freed in `end_transaction` call and any
      /// access to token after that is invalid.
      ///
      /// In case of error, plugins must set `status` to a value different than
      /// `TF_OK`, free memory allocated for `token` and return -1.
      ///
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  5. .github/workflows/trusted-partners.yml

          - name: Trusted-Partners-PR
            uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0 # v6.3.3
            with:
              github-token: ${{ secrets.GITHUB_TOKEN }}
              script: |
                const script = require('./.github/workflows/trusted_partners.js');
                const username = context.payload.pull_request.user.login;
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Sep 12 14:49:29 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  6. .github/workflows/sigbuild-docker-presubmit.yml

            uses: mshick/add-pr-comment@a65df5f64fc741e91c59b8359a4bc56e57aaf5b1 # v2
            if: contains(github.event.pull_request.labels.*.name, 'build and push to gcr.io for staging')
            with:
              repo-token: ${{ secrets.GITHUB_TOKEN }}
              message: |
                I pushed these containers:
                
                - `gcr.io/tensorflow-sigs/build:${{ github.event.number }}-python3.12`
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Oct 23 18:43:43 GMT 2023
    - 4K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental.cc

      };
      return tensorflow::unwrap(cancellation_manager)
          ->RegisterCallbackWithErrorLogging(token, callback, callback_name);
    }
    
    bool TFE_CancellationManagerDeregisterCallback(
        TFE_CancellationManager* cancellation_manager,
        TFE_CancellationToken token) {
      return tensorflow::unwrap(cancellation_manager)->DeregisterCallback(token);
    }
    
    bool TFE_CancellationManagerTryDeregisterCallback(
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
  8. RELEASE.md

        *   Updates to Preprocessing layers API for consistency and clarity:
            *   `StringLookup` and `IntegerLookup` default for `mask_token` changed
                to `None`. This matches the default masking behavior of `Hashing`
                and `Embedding` layers. To keep existing behavior, pass
                `mask_token=""` during layer creation.
            *   Renamed `"binary"` output mode to `"multi_hot"` for
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  9. tensorflow/c/experimental/filesystem/modular_filesystem.cc

    }
    
    bool ModularFileSystem::FilesExist(const std::vector<std::string>& files,
                                       TransactionToken* token,
                                       std::vector<Status>* status) {
      if (ops_->paths_exist == nullptr)
        return FileSystem::FilesExist(files, token, status);
    
      std::vector<char*> translated_names;
      translated_names.reserve(files.size());
      for (int i = 0; i < files.size(); 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)
  10. .github/workflows/issue-on-pr-rollback.yml

          - name: Create a new Github Issue
            uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0 # v6.3.3
            with:
              github-token: ${{secrets.GITHUB_TOKEN}}
              script: |
                const script = require('./.github/workflows/create_issue.js')
    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)
Back to top