Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for Capget (0.93 sec)

  1. .bazelrc

    # START MACOS CROSS-COMPILE CONFIGS
    build:cross_compile_macos_x86 --config=cross_compile_base
    build:cross_compile_macos_x86 --config=nonccl
    # Target Catalina (10.15) as the minimum supported OS
    build:cross_compile_macos_x86 --action_env  MACOSX_DEPLOYMENT_TARGET=10.15
    
    # Set the target CPU to Darwin x86
    build:cross_compile_macos_x86 --platforms=//tensorflow/tools/toolchains/cross_compile/config:darwin_x86_64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    			switch p.To.Type {
    			case obj.TYPE_BRANCH:
    				p.To.Type, p.To.Offset = obj.TYPE_CONST, p.To.Target().Pc-p.Pc
    			case obj.TYPE_MEM:
    				panic("unhandled type")
    			}
    
    		case AJAL:
    			// Linker will handle the intersymbol case and trampolines.
    			if p.To.Target() != nil {
    				p.To.Type, p.To.Offset = obj.TYPE_CONST, p.To.Target().Pc-p.Pc
    			}
    
    		case AAUIPC:
    			if p.From.Type == obj.TYPE_BRANCH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            public DependencyMetadata withTarget(ComponentSelector target) {
                return makeNonTransitive(dependencyMetadata.withTarget(target));
            }
    
            @Override
            public DependencyMetadata withTargetAndArtifacts(ComponentSelector target, List<IvyArtifactName> artifacts) {
                return makeNonTransitive(dependencyMetadata.withTargetAndArtifacts(target, artifacts));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    new File(pom.getBasedir(), "target"),
                    new File(pom.getValue("properties/buildOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/classes"),
                    new File(pom.getValue("properties/buildMainOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/test-classes"),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    			// BEQ	R0, R0, sbra
    			if p.To.Target() == nil {
    				v = int32(-4) >> 2
    			} else {
    				v = int32(p.To.Target().Pc-p.Pc-4) >> 2
    			}
    			if (v<<16)>>16 == v {
    				o1 = OP_IRR(c.opirr(ABEQ), uint32(v), REGZERO, REGZERO)
    				break
    			}
    		}
    		if p.To.Target() == nil {
    			v = int32(p.Pc) >> 2
    		} else {
    			v = int32(p.To.Target().Pc) >> 2
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. src/testing/testing.go

    // identified through fuzzing.
    //
    // The function passed to (*F).Fuzz within the fuzz test is considered the fuzz
    // target. A fuzz target must accept a *T parameter, followed by one or more
    // parameters for random inputs. The types of arguments passed to (*F).Add must
    // be identical to the types of these parameters. The fuzz target may signal
    // that it's found a problem the same way tests do: by calling T.Fail (or any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    			// generate extra passes putting branches around jmps to fix. this is rare.
    			if o.type_ == 6 && p.To.Target() != nil {
    				otxt := p.To.Target().Pc - pc
    
    				// On loong64, the immediate value field of the conditional branch instructions
    				// BFPT and BFPT is 21 bits, and the others are 16 bits. The jump target address
    				// is to logically shift the immediate value in the instruction code to the left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		*funcref = legacyMount
    	}
    	return (*funcref)(source, target, fstype, flags, data)
    }
    
    func legacyMount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	if needspace := 8 - len(fstype); needspace <= 0 {
    		fstype = fstype[0:8]
    	} else {
    		fstype += "        "[0:needspace]
    	}
    	return mount_LE(target, source, fstype, uint32(flags), int32(len(data)), data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. tensorflow/BUILD

            "cpu": "mips64",
        },
        visibility = ["//visibility:public"],
    )
    
    # TODO(jakeharmon8): Remove in favor of TSL version
    config_setting(
        name = "windows",
        # Internal builds query the target OS.
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:windows"],
            [],
        ),
        # OSS builds query the CPU type.
        values = if_oss(
            {"cpu": "x64_windows"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. src/os/os_test.go

    			return errors.New("file " + path + " contents differ")
    		}
    
    		var target string
    		switch fileName := filepath.Base(path); fileName {
    		case "file.abs.out.link", "file.rel.out.link":
    			target = outsideFile
    		case "file.rel.in.link":
    			target = insideFile
    		}
    		if len(target) > 0 {
    			targetData, err := ReadFile(target)
    			if err != nil {
    				return err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top