Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,264 for Lach (0.19 sec)

  1. docs/vi/docs/python-types.md

    Có nghĩa là: "biến `items` là một `list`, và mỗi phần tử trong danh sách này là một `str`".
    
    !!! tip
        Nếu bạn sử dụng Python 3.9 hoặc lớn hơn, bạn không phải import `List` từ `typing`, bạn có thể sử dụng `list` để thay thế.
    
    Bằng cách này, trình soạn thảo của bạn có thể hỗ trợ trong khi xử lí các phần tử trong danh sách:
    
    <img src="/img/python-types/image05.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		if err != nil {
    			return nil, fmt.Errorf("error reading Mach-O file %s: %v", name, err)
    		}
    		return f, nil
    	}
    	if machoMagicLittle == macho.MagicFat || machoMagicBig == macho.MagicFat {
    		f, err := b.openFatMachO(name, start, limit, offset)
    		if err != nil {
    			return nil, fmt.Errorf("error reading fat Mach-O file %s: %v", name, err)
    		}
    		return f, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    	BIND_SUBOPCODE_THREADED_SET_BIND_ORDINAL_TABLE_SIZE_ULEB = 0x00
    	BIND_SUBOPCODE_THREADED_APPLY                            = 0x01
    )
    
    const machoHeaderSize64 = 8 * 4 // size of 64-bit Mach-O header
    
    // Mach-O file writing
    // https://developer.apple.com/mac/library/DOCUMENTATION/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html
    
    var machohdr MachoHdr
    
    var load []MachoLoad
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                artifact([:])
            }
    
            artifacts.each { artifact ->
                def artifactFile = file(artifact)
                publish(artifactFile) { Writer writer ->
                    writer << "${artifactFile.name} : $artifactContent"
                }
            }
    
            variants.each {
                it.artifacts.findAll { it.name }.each {
                    def variantArtifact = moduleDir.file(it.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/initorder.go

    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    		// and drop the function node (don't collect it in G)
    		for p := range n.pred {
    			// ignore self-cycles
    			if p != n {
    				// Each successor s of n becomes a successor of p, and
    				// each predecessor p of n becomes a predecessor of s.
    				for s := range n.succ {
    					// ignore self-cycles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/go/types/initorder.go

    		return funcG[i].cost() < funcG[j].cost()
    	})
    	for _, n := range funcG {
    		// connect each predecessor p of n with each successor s
    		// and drop the function node (don't collect it in G)
    		for p := range n.pred {
    			// ignore self-cycles
    			if p != n {
    				// Each successor s of n becomes a successor of p, and
    				// each predecessor p of n becomes a predecessor of s.
    				for s := range n.succ {
    					// ignore self-cycles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RangeSet.java

      /**
       * Returns {@code true} if for each member range in {@code other} there exists a member range in
       * this range set which {@linkplain Range#encloses encloses} it. It follows that {@code
       * this.contains(value)} whenever {@code other.contains(value)}. Returns {@code true} if {@code
       * other} is empty.
       *
       * <p>This is equivalent to checking if this range set {@link #encloses} each of the ranges in
       * {@code other}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RangeSet.java

      /**
       * Returns {@code true} if for each member range in {@code other} there exists a member range in
       * this range set which {@linkplain Range#encloses encloses} it. It follows that {@code
       * this.contains(value)} whenever {@code other.contains(value)}. Returns {@code true} if {@code
       * other} is empty.
       *
       * <p>This is equivalent to checking if this range set {@link #encloses} each of the ranges in
       * {@code other}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            // Only the external transform is skipped, the project transforms would run in parallel and wait for each other.
            skippedTransformExecutions.size() == 4
            skippedTransformExecutions.findAll { it.identity == externalTransformIdentification.identity }.each {
                with(it) {
                    HashCode.fromBytes(originBuildCacheKeyBytes as byte[]).toString() == externalTransformBuildCacheKey
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/codegen_test_h.golden

    //
    // The Run method invokes the actual computation, with inputs read from arg
    // buffers, and outputs written to result buffers. Each Run call may also use
    // a set of temporary buffers for the computation.
    //
    // By default each instance of this class manages its own arg, result and temp
    // buffers. The AllocMode constructor parameter may be used to modify the
    // buffer allocation strategy.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top