Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for antrun (0.3 sec)

  1. misc/go_android_exec/main.go

    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"os/signal"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"syscall"
    )
    
    func adbRun(args string) (int, error) {
    	// The exit code of adb is often wrong. In theory it was fixed in 2016
    	// (https://code.google.com/p/android/issues/detail?id=3254), but it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_ppc64le.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The vectorized implementation found below is a derived work
    // from code written by Anton Blanchard <anton@au.ibm.com> found
    // at https://github.com/antonblanchard/crc32-vpmsum.  The original
    // is dual licensed under GPL and Apache 2.  As the copyright holder
    // for the work, IBM has contributed this new work under
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. Makefile.core.mk

    # by trying to run a trivial program and ensuring it actually ran. If not, emit our warning.
    # Note: we cannot do anything like $(shell docker version) to check, since that would also fail.
    CAN_RUN := $(shell echo "can I run echo")
    ifeq ($(CAN_RUN),)
    $(error $(warning))
    endif
    
    #-----------------------------------------------------------------------------
    # Global Variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/kubelet/logs/container_log_manager_test.go

    	require.NoError(t, c.rotateLogs(ctx))
    
    	// Start a routine that can monitor the queue and shutdown the queue to trigger the retrun from the processQueueItems
    	// Keeping the monitor duration smaller in order to keep the unwanted delay in the test to a minimal.
    	go func() {
    		pollTimeoutCtx, cancel := context.WithTimeout(ctx, 10*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/go/main.go

    		}
    		cmdName := cfg.CmdName
    		if cmdName == "" {
    			cmdName = args[0]
    		}
    		telemetry.Inc("go/subcommand:unknown")
    		fmt.Fprintf(os.Stderr, "go %s: unknown command\nRun 'go help%s' for usage.\n", cmdName, helpArg)
    		base.SetExitStatus(2)
    		base.Exit()
    	}
    	// Increment a subcommand counter for the subcommand we're running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        }.also { expected ->
          assertThat(expected.message).isEqualTo("enclosed object too large")
        }
      }
    
      /** Object identifiers are nominally self-delimiting. Outrun the limit with one. */
      @Test fun `variable length long outruns limit`() {
        val bytes = "060229ffffff7f".decodeHex()
        assertFailsWith<ProtocolException> {
          Adapters.OBJECT_IDENTIFIER.fromDer(bytes)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. pom.xml

        <contributor>
          <name>Phil Pratt-Szeliga (MNG-5645)</name>
        </contributor>
        <contributor>
          <name>Florencia Tarditti (PR 41)</name>
        </contributor>
        <contributor>
          <name>Anton Tanasenko</name>
        </contributor>
        <contributor>
          <name>Joseph Walton (MNG-5297)</name>
        </contributor>
        <contributor>
          <name>Fabiano Cipriano de Oliveira (MNG-6261)</name>
        </contributor>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. misc/ios/go_ios_exec.go

    		return err
    	}
    	defer closer()
    
    	return runDevice(appdir, bundleID, os.Args[2:])
    }
    
    func getenv(envvar string) string {
    	s := os.Getenv(envvar)
    	if s == "" {
    		log.Fatalf("%s not set\nrun $GOROOT/misc/ios/detect.go to attempt to autodetect", envvar)
    	}
    	return s
    }
    
    func assembleApp(appdir, bin string) error {
    	if err := os.MkdirAll(appdir, 0755); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
Back to top