Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Console (0.27 sec)

  1. .github/workflows/trusted_partners.js

        username
      });
      if (user.status >= 400) {
        console.log(user);
        throw `Error Getting user data for ${username}`;
      }
      const email = user.data.email;
      let domain = "";
      if (email && email.lastIndexOf("@") != -1)
        domain = email.substring(email.lastIndexOf("@") +1);
      console.log(domain);
      return domain;
    };
    
    /** For trusted parters like Intel, we want to auto-run tests
    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)
  2. .github/workflows/trusted-partners.yml

                  console.log(await script.filter({github, context, domain}));
                  break;
                case "arm.com":
                  console.log(await script.filter({github, context, domain}));
                  break;
                case "google.com":
                  console.log("Googler. No action necessary");
                  break;
                default:
                  console.log("Skip Trusted Partner Action");
    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)
  3. .github/workflows/issue-on-pr-rollback.yml

            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)
  4. .github/workflows/create_issue.js

      if (pr_match_groups.length != 2) {
        console.log(`PR Number not found in ${context.payload.head_commit.message}`);
        throw "Error extracting PR Number from commit message";
      }
      const pr_number = parseInt(pr_match_groups[1]);
      const owner = context.payload.repository.owner.name;
      const repo = context.payload.repository.name;
      console.log(`Original PR: ${pr_number} and Rollback Commit: ${rollback_commit}`);
    JavaScript
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Oct 18 23:04:59 GMT 2021
    - 2.8K bytes
    - Viewed (0)
  5. ci/devinfra/docker_windows/Dockerfile

        pyparsing pyreadline python-dateutil pytz pywin32 requests rsa setuptools \
        simplegeneric six Tempita traitlets uritemplate urllib3 virtualenv wcwidth \
        wheel win-unicode-console;
    
    # Hardcoding Android license since I did not find any solution on accepting it
    # through the docker build command. If the licensing agreement changes, this 
    # will need to be updated as well.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

    }
    
    // TODO(vnvo2409): `RecursivelyCreateDir` should use `CreateDir` instead of the
    // default implementation. Because we could create an empty object whose
    // key is equal to the `path` and Google Cloud Console will automatically
    // display it as a directory tree.
    
    void DeleteFile(const TF_Filesystem* filesystem, const char* path,
                    TF_Status* status) {
      std::string bucket, object;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
Back to top