Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 224 for targ (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function-retval-of-arg.pbtxt

    node {
      name: "arg"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "index"
        value {
          i: 0
        }
      }
    }
    node {
      name: "ret"
      op: "_Retval"
      input: "arg"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 807 bytes
    - Viewed (0)
  2. src/runtime/msan_arm64.s

    #include "textflag.h"
    
    #define RARG0 R0
    #define RARG1 R1
    #define RARG2 R2
    #define FARG R3
    
    // func runtime·domsanread(addr unsafe.Pointer, sz uintptr)
    // Called from msanread.
    TEXT	runtime·domsanread(SB), NOSPLIT, $0-16
    	MOVD	addr+0(FP), RARG0
    	MOVD	sz+8(FP), RARG1
    	// void __msan_read_go(void *addr, uintptr_t sz);
    	MOVD	$__msan_read_go(SB), FARG
    	JMP	msancall<>(SB)
    
    // func runtime·msanwrite(addr unsafe.Pointer, sz uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

    import java.math.BigDecimal;
    
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public interface Tag {
        String getName();
    
        String getClassAttr();
    
        String getTitle();
    
        String getUrl();
    
        default boolean isValid() {
            return this != UNTAGGED;
        }
    
        enum FixedTag implements Tag {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Tar.java

    import org.gradle.api.tasks.Input;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Assembles a TAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Tar extends AbstractArchiveTask {
        private Compression compression = Compression.NONE;
    
        public Tar() {
            getArchiveExtension().set(getProject().provider(() -> getCompression().getDefaultExtension()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/resources/org/gradle/api/internal/file/archive/nullpermissions.tar

    Mark Vieira <******@****.***> 1433358502 -0600
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 03 19:08:31 UTC 2015
    - 10K bytes
    - Viewed (0)
  6. internal/bucket/replication/tag.go

    )
    
    func (tag Tag) String() string {
    	return tag.Key + "=" + tag.Value
    }
    
    // IsEmpty returns whether this tag is empty or not.
    func (tag Tag) IsEmpty() bool {
    	return tag.Key == ""
    }
    
    // Validate checks this tag.
    func (tag Tag) Validate() error {
    	if len(tag.Key) == 0 || utf8.RuneCountInString(tag.Key) > 128 {
    		return errInvalidTagKey
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. src/runtime/msan_loong64.s

    #include "textflag.h"
    
    #define RARG0 R4
    #define RARG1 R5
    #define RARG2 R6
    #define FARG  R7
    
    // func runtime·domsanread(addr unsafe.Pointer, sz uintptr)
    // Called from msanread.
    TEXT	runtime·domsanread(SB), NOSPLIT, $0-16
    	MOVV	addr+0(FP), RARG0
    	MOVV	sz+8(FP), RARG1
    	// void __msan_read_go(void *addr, uintptr_t sz);
    	MOVV	$__msan_read_go(SB), FARG
    	JMP	msancall<>(SB)
    
    // func runtime·msanwrite(addr unsafe.Pointer, sz uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/context.go

    	h.typ(orig)
    	if len(targs) > 0 {
    		// TODO(rfindley): consider asserting on isGeneric(typ) here, if and when
    		// isGeneric handles *Signature types.
    		h.typeList(targs)
    	}
    
    	return strings.ReplaceAll(buf.String(), " ", "#")
    }
    
    // lookup returns an existing instantiation of orig with targs, if it exists.
    // Otherwise, it returns nil.
    func (ctxt *Context) lookup(h string, orig Type, targs []Type) Type {
    	ctxt.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/tracebackctxt_c.c

    	if (arg->context == 0) {
    		arg->context = 1;
    	}
    }
    
    void tcTraceback(void* parg) {
    	int base, i;
    	struct cgoTracebackArg* arg = (struct cgoTracebackArg*)(parg);
    	if (arg->context == 0 && arg->sigContext == 0) {
    		// This shouldn't happen in this program.
    		abort();
    	}
    	// Return a variable number of PC values.
    	base = arg->context << 8;
    	for (i = 0; i < arg->context; i++) {
    		if (i < arg->max) {
    			arg->buf[i] = base + i;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 29 15:30:38 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. src/runtime/asan_arm64.s

    #define RARG2 R2
    #define RARG3 R3
    #define FARG R4
    
    // Called from instrumented code.
    // func runtime·doasanread(addr unsafe.Pointer, sz, sp, pc uintptr)
    TEXT	runtime·doasanread(SB), NOSPLIT, $0-32
    	MOVD	addr+0(FP), RARG0
    	MOVD	sz+8(FP), RARG1
    	MOVD	sp+16(FP), RARG2
    	MOVD	pc+24(FP), RARG3
    	// void __asan_read_go(void *addr, uintptr_t sz, void *sp, void *pc);
    	MOVD	$__asan_read_go(SB), FARG
    	JMP	asancall<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top