Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 266 for tid1 (0.08 sec)

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

    #    c --- d
    #
    # The module dependency graph initially looks like:
    #
    # a --- b.3
    #  \      \
    #   \      \
    #   c.2 --- d.2
    #
    # c.1 --- b.2 (pseudo)
    #
    # b.1 --- e.1
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod.orig go.mod
    
    # When we downgrade d.2 to d.1, no dependency on e should be added
    # because nothing else in the module or import graph requires it.
    go get example.net/d@v0.1.0
    
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_arm.s

    	MOVW	$SYS_getpid, R7
    	SWI	$0
    	MOVW	R0, R4
    	MOVW	$SYS_gettid, R7
    	SWI	$0
    	MOVW	R0, R1	// arg 2 tid
    	MOVW	R4, R0	// arg 1 pid
    	MOVW	sig+0(FP), R2	// arg 3
    	MOVW	$SYS_tgkill, R7
    	SWI	$0
    	RET
    
    TEXT	runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
    	MOVW	$SYS_getpid, R7
    	SWI	$0
    	// arg 1 tid already in R0 from getpid
    	MOVW	sig+0(FP), R1	// arg 2 - signal
    	MOVW	$SYS_kill, R7
    	SWI	$0
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_ambiguous_arg.txt

    go mod tidy
    cp go.mod go.mod.orig
    
    # If there is no sensible *package* meaning for 'm/p', it should refer
    # to *module* m/p.
    
    go get m/p  # @latest
    go list -m all
    stdout '^m/p v0.3.0 '
    ! stdout '^m '
    
    cp go.mod.orig go.mod
    
    go get m/p@v0.1.0
    go list -m all
    stdout '^m/p v0.1.0 '
    ! stdout '^m '
    
    # When feasible, the argument 'm/p' in 'go get m/p' refers to *package* m/p,
    # which is in module m.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. src/README.vendor

    Requirements may be added, updated, and removed with 'go get'.
    The vendor directory may be updated with 'go mod vendor'.
    A typical sequence might be:
    
        cd src  # or src/cmd
        go get golang.org/x/net@master
        go mod tidy
        go mod vendor
    
    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    modules providing all transitively imported packages, not only
    the module providing the target package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tests/helper_test.go

    		}
    	})
    }
    
    func tidbSkip(t *testing.T, reason string) {
    	if isTiDB() {
    		t.Skipf("This test case skipped, because of TiDB '%s'", reason)
    	}
    }
    
    func isTiDB() bool {
    	return os.Getenv("GORM_DIALECT") == "tidb"
    }
    
    func isMysql() bool {
    	return os.Getenv("GORM_DIALECT") == "mysql"
    }
    
    func isSqlite() bool {
    	return os.Getenv("GORM_DIALECT") == "sqlite"
    }
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_replace_import.txt

    # The go command should print an informative error when the matched
    # module does not contain a package.
    # TODO(#26909): Ideally these errors should include line numbers for the imports within the main module.
    cd fail
    ! go mod tidy
    stderr '^go: localhost.fail imports\n\tw: module w@latest found \(v0.0.0-00010101000000-000000000000, replaced by ../w\), but does not contain package w$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            containerSupportsBuildOperations()
    
            UserCodeApplicationId id1 = null
            userCodeApplicationContext.apply(Stub(UserCodeSource)) {
                id1 = it
                container.whenObjectAdded {
                    assert userCodeApplicationContext.current().id == id1
                }
            }
    
            when:
            addToContainer(a)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    ``MinIO`` uses `go mod` to manage its dependencies.
    
    - Run `go get foo/bar` in the source folder to add the dependency to `go.mod` file.
    
    To remove a dependency
    
    - Edit your code and remove the import reference.
    - Run `go mod tidy` in the source folder to remove dependency from `go.mod` file.
    
    ### What are the coding guidelines for MinIO?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    using ::tensorflow::protobuf::Message;
    using ::tensorflow::protobuf::RepeatedPtrField;
    using ::tensorflow::protobuf::TextFormat;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::ArrayInputStream;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::util::MessageDifferencer;
    using tools::proto_splitter::GetChunkMetadata;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_386.s

    // int32 clone(int32 flags, void *stack, M *mp, G *gp, void (*fn)(void));
    TEXT runtime·clone(SB),NOSPLIT,$0
    	MOVL	$SYS_clone, AX
    	MOVL	flags+0(FP), BX
    	MOVL	stk+4(FP), CX
    	MOVL	$0, DX	// parent tid ptr
    	MOVL	$0, DI	// child tid ptr
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	SUBL	$16, CX
    	MOVL	mp+8(FP), SI
    	MOVL	SI, 0(CX)
    	MOVL	gp+12(FP), SI
    	MOVL	SI, 4(CX)
    	MOVL	fn+16(FP), SI
    	MOVL	SI, 8(CX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top