Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for newobject (0.56 sec)

  1. test/codegen/strings.go

    }
    
    func CountBytes(s []byte) int {
    	// amd64:-`.*runtime.slicebytetostring`
    	return len(string(s))
    }
    
    func ToByteSlice() []byte { // Issue #24698
    	// amd64:`LEAQ\ttype:\[3\]uint8`
    	// amd64:`CALL\truntime\.newobject`
    	// amd64:-`.*runtime.stringtoslicebyte`
    	return []byte("foo")
    }
    
    // Loading from read-only symbols should get transformed into constants.
    func ConstantLoad() {
    	// 12592 = 0x3130
    	//    50 = 0x32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:17:28 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/builtinlist.go

    // Code generated by mkbuiltin.go. DO NOT EDIT.
    
    package goobj
    
    var builtins = [...]struct {
    	name string
    	abi  int
    }{
    	{"runtime.newobject", 1},
    	{"runtime.mallocgc", 1},
    	{"runtime.panicdivide", 1},
    	{"runtime.panicshift", 1},
    	{"runtime.panicmakeslicelen", 1},
    	{"runtime.panicmakeslicecap", 1},
    	{"runtime.throwinit", 1},
    	{"runtime.panicwrap", 1},
    	{"runtime.gopanic", 1},
    	{"runtime.gorecover", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. test/nilptr3.go

    type TT struct {
    	SS
    }
    
    func f(t *TT) *byte {
    	// See issue 17242.
    	s := &t.SS  // ERROR "generated nil check"
    	return &s.x // ERROR "removed nil check"
    }
    
    // make sure not to do nil check for newobject
    func f7() (*Struct, float64) {
    	t := new(Struct)
    	p := &t.Y    // ERROR "removed nil check"
    	return t, *p // ERROR "removed nil check"
    }
    
    func f9() []int {
    	x := new([1]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/ndr/NdrObject.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.dcerpc.ndr;
    
    
    @SuppressWarnings ( "javadoc" )
    public abstract class NdrObject {
    
        public abstract void encode ( NdrBuffer dst ) throws NdrException;
    
    
        public abstract void decode ( NdrBuffer src ) throws NdrException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/ndr/NdrObject.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.dcerpc.ndr;
    
    public abstract class NdrObject {
    
        public abstract void encode(NdrBuffer dst) throws NdrException;
        public abstract void decode(NdrBuffer src) throws NdrException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  6. docs/debugging/s3-verify/main.go

    			}
    
    			srcCtnt, srcOk = nextObject(srcCh)
    			tgtCtnt, tgtOk = nextObject(tgtCh)
    			continue
    		}
    
    		fmt.Printf("only in target: %s\n", tgtCtnt.Key)
    		tgtCtnt, tgtOk = nextObject(tgtCh)
    	}
    }
    
    func verifyChecksum(sclnt *minio.Client, srcSha256, tgtSha256 hash.Hash, srcCtnt, tgtCtnt minio.ObjectInfo) (allgood bool) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/WebApiUtil.java

        private WebApiUtil() {
        }
    
        public static void setObject(final String name, final Object value) {
            LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(name, value));
        }
    
        @SuppressWarnings("unchecked")
        public static <T> T getObject(final String name) {
            return LaRequestUtil.getOptionalRequest().map(req -> (T) req.getAttribute(name)).orElse(null);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

            Object nextObject = objectFactory.nextObject();
            if (nextObject instanceof PGPSignatureList) {
                return (PGPSignatureList) nextObject;
            } else if (nextObject instanceof PGPCompressedData) {
                return readSignatureList(((PGPCompressedData) nextObject).getDataStream(), locationHint);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/testing/helpers.go

    		if err != nil {
    			return err
    		}
    		if a.GetObject() != nil {
    			// keep a copy of the output for subsequent idempotency checking
    			outputs = append(outputs, a.GetObject().DeepCopyObject())
    			// replace a.GetObject() with a copy of itself to make sure admission is safe to reinvoke with a round-tripped copy (no pointer comparisons are done)
    			if deepCopyInto, ok := reflect.TypeOf(a.GetObject()).MethodByName("DeepCopyInto"); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_status_updater_test.go

    		update := action.(core.UpdateAction)
    		if !conflict {
    			conflict = true
    			return true, update.GetObject(), apierrors.NewConflict(action.GetResource().GroupResource(), set.Name, errors.New("object already exists"))
    		}
    		return true, update.GetObject(), nil
    
    	})
    	if err := updater.UpdateStatefulSetStatus(context.TODO(), set, &status); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 15:37:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
Back to top