Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for Wain (0.14 sec)

  1. misc/go_android_exec/main.go

    //go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
    
    // This program can be used as go_android_GOARCH_exec by the Go tool.
    // It executes binaries on an android device using adb.
    package main
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"os/signal"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"syscall"
    )
    Go
    - Registered: 2023-11-28 11:13
    - Last Modified: 2023-08-21 17:46
    - 15.3K bytes
    - Viewed (0)
  2. docs/debugging/xl-meta/main.go

    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package main
    
    import (
    	"bytes"
    	"encoding/binary"
    	"encoding/hex"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    	"time"
    
    	"github.com/google/uuid"
    Go
    - Registered: 2023-12-03 19:28
    - Last Modified: 2023-06-22 19:41
    - 18.1K bytes
    - Viewed (1)
  3. .github/actions/notify-translations/app/main.py

            comment_id=comment_id,
            body=body,
        )
        response = UpdateCommentResponse.parse_obj(data)
        return response.data.updateDiscussionComment.comment
    
    
    if __name__ == "__main__":
        settings = Settings()
        if settings.input_debug:
            logging.basicConfig(level=logging.DEBUG)
        else:
            logging.basicConfig(level=logging.INFO)
    Python
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-09-27 23:01
    - 12.4K bytes
    - Viewed (0)
  4. .github/actions/people/app/main.py

                        "count": count,
                        "avatarUrl": author.avatarUrl,
                        "url": author.url,
                    }
                )
        return users
    
    
    if __name__ == "__main__":
        logging.basicConfig(level=logging.INFO)
        settings = Settings()
        logging.info(f"Using config: {settings.model_dump_json()}")
        g = Github(settings.input_token.get_secret_value())
    Python
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-08-02 15:57
    - 19.4K bytes
    - Viewed (1)
  5. src/cmd/api/main_test.go

    // license that can be found in the LICENSE file.
    
    // This package computes the exported API of a set of Go packages.
    // It is only a test, not a command, nor a usefully importable package.
    
    package main
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/parser"
    	"go/token"
    	"go/types"
    	"internal/testenv"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    Go
    - Registered: 2023-11-28 11:13
    - Last Modified: 2023-11-14 15:24
    - 31.1K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_bigger_applications/test_main.py

    from dirty_equals import IsDict
    from fastapi.testclient import TestClient
    from fastapi.utils import match_pydantic_error_url
    
    
    @pytest.fixture(name="client")
    def get_client():
        from docs_src.bigger_applications.app.main import app
    
        client = TestClient(app)
        return client
    
    
    def test_users_token_jessica(client: TestClient):
        response = client.get("/users?token=jessica")
        assert response.status_code == 200
    Python
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-07-07 17:12
    - 25.2K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_bigger_applications/test_main_an.py

    from dirty_equals import IsDict
    from fastapi.testclient import TestClient
    from fastapi.utils import match_pydantic_error_url
    
    
    @pytest.fixture(name="client")
    def get_client():
        from docs_src.bigger_applications.app_an.main import app
    
        client = TestClient(app)
        return client
    
    
    def test_users_token_jessica(client: TestClient):
        response = client.get("/users?token=jessica")
        assert response.status_code == 200
    Python
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-07-07 17:12
    - 25.2K bytes
    - Viewed (0)
  8. cmd/common-main.go

    Adrian Najera <******@****.***> 1698686494 -0600
    Go
    - Registered: 2023-12-03 19:28
    - Last Modified: 2023-10-30 17:21
    - 33.4K bytes
    - Viewed (1)
  9. tests/test_tutorial/test_bigger_applications/test_main_an_py39.py

    from fastapi.utils import match_pydantic_error_url
    
    from ...utils import needs_py39
    
    
    @pytest.fixture(name="client")
    def get_client():
        from docs_src.bigger_applications.app_an_py39.main import app
    
        client = TestClient(app)
        return client
    
    
    @needs_py39
    def test_users_token_jessica(client: TestClient):
        response = client.get("/users?token=jessica")
    Python
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-07-07 17:12
    - 25.6K bytes
    - Viewed (0)
  10. cmd/server-main.go

    Harshavardhana <******@****.***> 1700689577 -0800
    Go
    - Registered: 2023-12-03 19:28
    - Last Modified: 2023-11-22 21:46
    - 30.4K bytes
    - Viewed (0)
Back to top