Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,601 for Here (0.04 sec)

  1. src/runtime/defs_linux_mipsx.go

    	sa_handler uintptr
    	sa_mask    [4]uint32
    	// linux header does not have sa_restorer field,
    	// but it is used in setsig(). it is no harm to put it here
    	sa_restorer uintptr
    }
    
    type siginfoFields struct {
    	si_signo int32
    	si_code  int32
    	si_errno int32
    	// below here is a union; si_addr is the only field we use
    	si_addr uint32
    }
    
    type siginfo struct {
    	siginfoFields
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/reflect/asm_mips64x.s

    #include "funcdata.h"
    
    #define	REGCTXT	R22
    
    // makeFuncStub is the code half of the function returned by MakeFunc.
    // See the comment on the declaration of makeFuncStub in makefunc.go
    // for more details.
    // No arg size here, runtime pulls arg map out of the func value.
    TEXT ·makeFuncStub(SB),(NOSPLIT|WRAPPER),$40
    	NO_LOCAL_POINTERS
    	MOVV	REGCTXT, 8(R29)
    	MOVV	$argframe+0(FP), R1
    	MOVV	R1, 16(R29)
    	MOVB	R0, 40(R29)
    	ADDV	$40, R29, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/tensorlist_patterns.td

    def ConvertTensorListFromTensor : Pat<
      (TF_TensorListFromTensorOp $tensor, $element_shape),
      (replaceWithValue $tensor)>;
    
    // This pattern is in PrepareTF pass and added here temporary
    // TODO(karimnosseir): Move away from here after looking in ordering
    // the passes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 16 23:20:46 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/reflect/asm_s390x.s

    #include "textflag.h"
    #include "funcdata.h"
    
    // makeFuncStub is the code half of the function returned by MakeFunc.
    // See the comment on the declaration of makeFuncStub in makefunc.go
    // for more details.
    // No arg size here, runtime pulls arg map out of the func value.
    TEXT ·makeFuncStub(SB),(NOSPLIT|WRAPPER),$40
    	NO_LOCAL_POINTERS
    	MOVD	R12, 8(R15)
    	MOVD	$argframe+0(FP), R3
    	MOVD	R3, 16(R15)
    	MOVB	$0, 40(R15)
    	ADD	$40, R15, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 02 16:53:18 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Breaking change (fix or feature that would cause existing functionality to change)
    
    ## Checklist:
    - [ ] Fixes a regression (If yes, please add `commit-id` or `PR #` here)
    - [ ] Unit tests added/updated
    - [ ] Internal documentation updated
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 14 17:29:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. docs/sts/etcd.md

    etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.
    
    ## Get started
    
    ### 1. Prerequisites
    
    - Docker 18.03 or above, refer here for [installation](https://docs.docker.com/install/).
    
    ### 2. Start etcd
    
    etcd uses [gcr.io/etcd-development/etcd](https://console.cloud.google.com/gcr/images/etcd-development/GLOBAL/etcd) as a primary container registry.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/java/modules-with-transform/groovy/application/build.gradle

    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::extraModuleInfo[]
    extraJavaModuleInfo {
        // This does not have to be a complete description (e.g. here 'org.apache.commons.collections' does not export anything here).
        // It only needs to be good enough to work in the context of this application we are building.
        module('commons-beanutils-1.9.4.jar', 'org.apache.commons.beanutils', '1.9.4') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/java/modules-with-transform/kotlin/application/build.gradle.kts

    tasks.compileJava {
        options.javaModuleVersion = provider({ version as String })
    }
    
    // tag::extraModuleInfo[]
    extraJavaModuleInfo {
        // This does not have to be a complete description (e.g. here 'org.apache.commons.collections' does not export anything here).
        // It only needs to be good enough to work in the context of this application we are building.
        module("commons-beanutils-1.9.4.jar", "org.apache.commons.beanutils", "1.9.4") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/rt0_linux_arm.s

    TEXT _rt0_arm_linux1(SB),NOSPLIT|NOFRAME,$0
    	// We first need to detect the kernel ABI, and warn the user
    	// if the system only supports OABI.
    	// The strategy here is to call some EABI syscall to see if
    	// SIGILL is received.
    	// If you get a SIGILL here, you have the wrong kernel.
    
    	// Save argc and argv (syscall will clobber at least R0).
    	MOVM.DB.W [R0-R1], (R13)
    
    	// do an EABI syscall
    	MOVW	$20, R7 // sys_getpid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 1007 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

     private:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
      std::unique_ptr<mlir::PassManager> pm_;
    };
    
    TEST_F(VerifyTfxlaLegalizationTest, RecordsStreamzFailedVerification) {
      // Using a string constant here instead of testdata to make this compatible
      // with open source.
      static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top