Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for antrun (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    			} else {
    				metrics.RecordRequestAbort(req, info)
    			}
    			// This call can have different handlers, but the default chain rate limits. Call it after the metrics are updated
    			// in case the rate limit delays it.  If you outrun the rate for this one timed out requests, something has gone
    			// seriously wrong with your server, but generally having a logging signal for timeouts is useful.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/plugins/NativeBinariesTestPlugin.java

                InstallExecutable installTask = (InstallExecutable) tasks.getInstall();
                RunTestExecutable runTask = (RunTestExecutable) tasks.getRun();
                runTask.getInputs().files(installTask.getOutputs().getFiles()).withPropertyName("installTask.outputs").withPathSensitivity(PathSensitivity.RELATIVE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/device_target.h

                                   const KernelSpecs::Signature& signature,
                                   const ScaleConstraintType constraint);
    
      // Adds the kernel with the name. Retrun an existing one if it has been
      // added before.
      KernelSpecs& RegisterKernel(llvm::StringRef kernel) { return specs_[kernel]; }
    
      // For "mulmat->add" type of kernels, convert the scales of all the ports to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

            given:
            buildFile '''
                abstract class Fails extends DefaultTask {
    
                    @Input abstract Property<String> getColor()
    
                    @TaskAction void wontRun() {
                        assert false
                    }
                }
    
                abstract class FailsPlugin implements Plugin<Project> {
    
                    @Inject abstract FlowProviders getFlowProviders()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/regexp/onepass.go

    			// A:BC + B:DC => A:DC + B:DC
    			if *p_A_Other == *p_B_Alt {
    				*p_A_Alt = *p_B_Other
    			}
    		}
    	}
    	return p
    }
    
    var anyRuneNotNL = []rune{0, '\n' - 1, '\n' + 1, unicode.MaxRune}
    var anyRune = []rune{0, unicode.MaxRune}
    
    // makeOnePass creates a onepass Prog, if possible. It is possible if at any alt,
    // the match engine can always tell which branch to take. The routine may modify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top