Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fmtStr (0.12 sec)

  1. src/archive/tar/writer.go

    // templateV7Plus or writeRawFile.
    func (tw *Writer) templateV7Plus(hdr *Header, fmtStr stringFormatter, fmtNum numberFormatter) *block {
    	tw.blk.reset()
    
    	modTime := hdr.ModTime
    	if modTime.IsZero() {
    		modTime = time.Unix(0, 0)
    	}
    
    	v7 := tw.blk.toV7()
    	v7.typeFlag()[0] = hdr.Typeflag
    	fmtStr(v7.name(), hdr.Name)
    	fmtStr(v7.linkName(), hdr.Linkname)
    	fmtNum(v7.mode(), hdr.Mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    				})).
    				BuildAll(nil, to).
    				Apply()
    			newTrafficTest(t, to.Instances()).
    				RunViaIngress(func(t framework.TestContext, from ingress.Instance, to echo.Target) {
    					host := func(fmtStr string) string {
    						return fmt.Sprintf(fmtStr, to.Config().Service)
    					}
    					cases := []struct {
    						host  string
    						path  string
    						ip    string
    						allow allowValue
    					}{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    			// Handle objects compiled with -fno-plt. Rewrite local calls to avoid indirect calling.
    			// These are 0 sized relocs. They mark the mtctr r12, or bctrl + ld r2,24(r1).
    			case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_PLTSEQ):
    				if ldr.SymType(r.Sym()) == sym.STEXT {
    					// This should be an mtctr instruction. Turn it into a nop.
    					su := ldr.MakeSymbolUpdater(s)
    					const MASK_OP_MTCTR = 63<<26 | 0x3FF<<11 | 0x1FF<<1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. src/crypto/aes/asm_ppc64x.s

    	ADD	$0x10, PTR, PTR    // addi  6,6,0x10   PTR to next 16 bytes of RCON
    	MOVD	$8, CNT            // li    7,8        CNT = 8
    	VXOR	ZERO, ZERO, ZERO   // vxor  0,0,0      Zero to be zero :)
    	MOVD	CNT, CTR           // mtctr 7          Set the counter to 8 (rounds)
    
    	// The expanded decrypt key is the expanded encrypt key stored in reverse order.
    	// Move OUTDEC to the last key location, and store in descending order.
    	ADD	$160, OUTDEC, OUTDEC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal.go

    		}
    		if name == "" {
    			return &UnsupportedTypeError{typ}
    		}
    		start.Name.Local = name
    	}
    
    	// Attributes
    	for i := range tinfo.fields {
    		finfo := &tinfo.fields[i]
    		if finfo.flags&fAttr == 0 {
    			continue
    		}
    		fv := finfo.value(val, dontInitNilPointers)
    
    		if finfo.flags&fOmitEmpty != 0 && (!fv.IsValid() || isEmptyValue(fv)) {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                           << func_arg_count;
      }
    
      return success();
    }
    
    void LegacyCallOp::setCalleeFromCallable(mlir::CallInterfaceCallable callee) {
      // Direct call.
      if (SymbolRefAttr fAttr = getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }
    
    template <typename CallOpClass>
    static void SetPartitionCalleeFromCallable(CallOpClass op,
                                               mlir::CallInterfaceCallable callee) {
      // Direct call.
      if (SymbolRefAttr fAttr = op.getFAttr()) {
        SymbolRefAttr calleeAttr = callee.get<SymbolRefAttr>();
        return op.setFAttr(cast<FlatSymbolRefAttr>(calleeAttr));
      }
      // Indirect call, callee Value is the first operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top