Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for antrun (0.12 sec)

  1. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    # Other flag values should be rejected with a useful error message.
    
    ! go build -buildvcs=hg -o example.exe .
    stderr '\Ainvalid boolean value "hg" for -buildvcs: value is neither ''auto'' nor a valid bool\nusage: go build .*\nRun ''go help build'' for details.\n\z'
    
    
    -- go.mod --
    module example
    
    go 1.18
    -- example.go --
    package main
    
    func main() {}
    -- sub/sub.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DirectoryOutputArtifactIntegrationTest.groovy

            }
            '''
    
            when:
            run 'a:check'
    
            then:
            notExecuted ':b:generateFiles'
    
            when:
            run 'a:run'
    
            then:
            executedAndNotSkipped ':b:generateFiles'
        }
    
        def "can avoid building a jar when compiling against another project"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_graph_version.txt

    # what versions they would report.
    ! go mod graph -go=1.99999999999
    stderr '^invalid value "1\.99999999999" for flag -go: maximum supported Go version is '$goversion'\nusage: go mod graph \[-go=version\] \[-x\]\nRun ''go help mod graph'' for details.$'
    
    
    -- go.mod --
    // Module m indirectly imports a package from
    // example.com/retract/incompatible. Its selected version of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //    \--> Add ($constantA, $constantB)
    foreach ActFun = [TFL_AF_Relu, TFL_AF_Relu6, TFL_AF_Relu1, TFL_AF_None] in {
      def ReorderAddToAllowConstFold_ActFunc_#ActFun : Pat<
        (TFL_AddOp
         (TFL_AddOp:$first_output $input, (Arith_ConstantOp $a), TFL_AF_None),
         (Arith_ConstantOp $b), ActFun),
        (TFL_AddOp $input,
         (TFL_AddOp (Arith_ConstantOp $a), (Arith_ConstantOp $b), TFL_AF_None),
         ActFun),
        [(HasOneUse $first_output),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/test/test.go

    	if err == nil {
    		norun := ""
    		if !testShowPass() && !testJSON {
    			buf.Reset()
    		}
    		if bytes.HasPrefix(out, noTestsToRun[1:]) || bytes.Contains(out, noTestsToRun) {
    			norun = " [no tests to run]"
    		}
    		if bytes.HasPrefix(out, noFuzzTestsToFuzz[1:]) || bytes.Contains(out, noFuzzTestsToFuzz) {
    			norun = " [no fuzz tests to fuzz]"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. 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)
Back to top