Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 186 for resptr (0.41 sec)

  1. guava/src/com/google/common/io/FileBackedOutputStream.java

      }
    
      /**
       * Creates a new instance that uses the given file threshold, and optionally resets the data when
       * the {@link ByteSource} returned by {@link #asByteSource} is finalized.
       *
       * @param fileThreshold the number of bytes before the stream should switch to buffering to a file
       * @param resetOnFinalize if true, the {@link #reset} method will be called when the {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/lock-rest-server-common.go

    Klaus Post <******@****.***> 1700528975 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 973 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/convert.go

    			a.SetType(types.NewPtr(t))
    			a.SetTypecheck(1)
    			a.MarkNonNil()
    		}
    		p := typecheck.TempAt(base.Pos, ir.CurFunc, t.PtrTo()) // *[n]byte
    		init.Append(typecheck.Stmt(ir.NewAssignStmt(base.Pos, p, a)))
    
    		// Copy from the static string data to the [n]byte.
    		if len(sc) > 0 {
    			sptr := ir.NewUnaryExpr(base.Pos, ir.OSPTR, s)
    			sptr.SetBounded(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectorServices.java

            return new DefaultCancellationTokenSource();
        }
    
        public static void close() {
            singletonRegistry.close();
        }
    
        /**
         * Resets the state of connector services. Meant to be used only for testing!
         */
        public static void reset() {
            singletonRegistry.close();
            singletonRegistry = new ConnectorServiceRegistry();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// such as type byte instead of the more accurate type [8]byte.
    	{name: "Move", argLength: 3, typ: "Mem", aux: "TypSize"}, // arg0=destptr, arg1=srcptr, arg2=mem, auxint=size, aux=type.  Returns memory.
    	{name: "Zero", argLength: 2, typ: "Mem", aux: "TypSize"}, // arg0=destptr, arg1=mem, auxint=size, aux=type. Returns memory.
    
    	// Memory operations with write barriers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/expand_calls.go

    	ft := from.Type
    	if offset == 0 {
    		if ft == pt {
    			return from
    		}
    		// This captures common, (apparently) safe cases.  The unsafe cases involve ft == uintptr
    		if (ft.IsPtr() || ft.IsUnsafePtr()) && pt.IsPtr() {
    			return from
    		}
    	}
    	// Simplify, canonicalize
    	for from.Op == OpOffPtr {
    		offset += from.AuxInt
    		from = from.Args[0]
    	}
    	if from == x.sp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  7. src/net/interface.go

    	zoneCache.RUnlock()
    	if !ok && !updated {
    		zoneCache.update(nil, true)
    		zoneCache.RLock()
    		name, ok = zoneCache.toName[index]
    		zoneCache.RUnlock()
    	}
    	if !ok { // last resort
    		name = itoa.Uitoa(uint(index))
    	}
    	return name
    }
    
    func (zc *ipv6ZoneCache) index(name string) int {
    	if name == "" {
    		return 0
    	}
    	updated := zoneCache.update(nil, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteAMD64.go

    			if !(is32Bit(c)) {
    				continue
    			}
    			v.reset(OpAMD64ADCQconst)
    			v.AuxInt = int32ToAuxInt(int32(c))
    			v.AddArg2(x, carry)
    			return true
    		}
    		break
    	}
    	// match: (ADCQ x y (FlagEQ))
    	// result: (ADDQcarry x y)
    	for {
    		x := v_0
    		y := v_1
    		if v_2.Op != OpAMD64FlagEQ {
    			break
    		}
    		v.reset(OpAMD64ADDQcarry)
    		v.AddArg2(x, y)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Load <t> ptr mem)
    	// cond: (is64BitInt(t) || isPtr(t))
    	// result: (MOVDload ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is64BitInt(t) || isPtr(t)) {
    			break
    		}
    		v.reset(OpS390XMOVDload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    		return nil, err
    	}
    	return hf, nil
    }
    
    // Close declares that the decoding is complete and resets the Decoder
    // to be reused again for a new header block. If there is any remaining
    // data in the decoder's buffer, Close returns an error.
    func (d *Decoder) Close() error {
    	if d.saveBuf.Len() > 0 {
    		d.saveBuf.Reset()
    		return DecodingError{errors.New("truncated headers")}
    	}
    	d.firstField = true
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top