Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 144 for defs (0.06 sec)

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

    go list -f $MODFMT -deps ./...
    stdout '^example.com/retract/incompatible v1\.0\.0$'
    ! stdout 'v2\.0\.0'
    
    
    # The other is to explicitly upgrade the version required under Go 1.17
    # to match the version selected by Go 1.16. The commands suggested by
    # 'go mod tidy' should do exactly that.
    
    cp go.mod.orig go.mod
    
    go mod tidy -go=1.16
    go list -f $MODFMT -deps ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/utils/BUILD

            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "utils",
        srcs = [
            "utils.cc",
        ],
        hdrs = [
            "utils.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate_lib",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 989 bytes
    - Viewed (0)
  3. src/testing/fuzz.go

    // returns immediately.
    func runFuzzing(deps testDeps, fuzzTests []InternalFuzzTarget) (ok bool) {
    	if len(fuzzTests) == 0 || *matchFuzz == "" {
    		return true
    	}
    	m := newMatcher(deps.MatchString, *matchFuzz, "-test.fuzz", *skip)
    	tctx := newTestContext(1, m)
    	tctx.isFuzzing = true
    	fctx := &fuzzContext{
    		deps: deps,
    	}
    	root := common{w: os.Stdout}
    	if *isFuzzWorker {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            dep2.setGroupId( "test" );
            dep2.setArtifactId( "test-artifact2" );
            dep2.setVersion( "1" );
            dep2.setType( "jar" );
    
            List<Dependency> deps = new ArrayList<>();
            deps.add( dep1 );
            deps.add( dep2 );
    
            ArtifactFactory factory = container.lookup( ArtifactFactory.class );
    
            ArtifactFilter dependencyFilter = new ScopeArtifactFilter( Artifact.SCOPE_COMPILE );
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/runtime/defs_freebsd.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -cdefs defs_freebsd.go >defs_freebsd_amd64.h
    GOARCH=386 go tool cgo -cdefs defs_freebsd.go >defs_freebsd_386.h
    GOARCH=arm go tool cgo -cdefs defs_freebsd.go >defs_freebsd_arm.h
    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <unistd.h>
    #include <fcntl.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/runtime/defs_freebsd_riscv64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_freebsd.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_NBBY            = 0x8
    	_CTL_MAXNAME     = 0x18
    	_CPU_LEVEL_WHICH = 0x3
    	_CPU_WHICH_PID   = 0x2
    )
    
    const (
    	_EINTR     = 0x4
    	_EFAULT    = 0xe
    	_EAGAIN    = 0x23
    	_ETIMEDOUT = 0x3c
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/runtime/defs_darwin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -cdefs defs_darwin.go >defs_darwin_amd64.h
    */
    
    package runtime
    
    /*
    #define __DARWIN_UNIX03 0
    #include <mach/mach_time.h>
    #include <sys/types.h>
    #include <sys/time.h>
    #include <errno.h>
    #include <signal.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/runtime/defs_dragonfly_amd64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_dragonfly.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_EINTR     = 0x4
    	_EFAULT    = 0xe
    	_EBUSY     = 0x10
    	_EAGAIN    = 0x23
    	_ETIMEDOUT = 0x3c
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x20000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/views/BUILD

    cc_library(
        name = "views",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp/renderers:__pkg__"],
        deps = [
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/c/experimental/ops/gen/model",
            "//tensorflow/core:lib",
            "//tensorflow/core:lib_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 731 bytes
    - Viewed (0)
  10. prow/release-commit.sh

    ignoreVulnerability: true
    dependencies:
    ${DEPENDENCIES:-$(cat <<EOD
      istio:
        localpath: ${ROOT}
      api:
        git: https://github.com/istio/api
        auto: modules
      proxy:
        git: https://github.com/istio/proxy
        auto: deps
      client-go:
        git: https://github.com/istio/client-go
        branch: master
      test-infra:
        git: https://github.com/istio/test-infra
        branch: master
      tools:
        git: https://github.com/istio/tools
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top