Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for setlkw (0.3 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    org/apache/maven/plugin/AbstractMojo.class package org.apache.maven.plugin; public abstract synchronized class AbstractMojo implements Mojo, ContextEnabled { private logging.Log log; private java.util.Map pluginContext; public void AbstractMojo(); public void setLog(logging.Log); public logging.Log getLog(); public java.util.Map getPluginContext(); public void setPluginContext(java.util.Map); } org/apache/maven/plugin/AbstractMojoExecutio.class package org.apache.maven.plugin; public abstract synchronized class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    org/apache/maven/plugin/AbstractMojo.class package org.apache.maven.plugin; public abstract synchronized class AbstractMojo implements Mojo, ContextEnabled { private logging.Log log; private java.util.Map pluginContext; public void AbstractMojo(); public void setLog(logging.Log); public logging.Log getLog(); public java.util.Map getPluginContext(); public void setPluginContext(java.util.Map); } org/apache/maven/plugin/AbstractMojoExecutio.class package org.apache.maven.plugin; public abstract synchronized class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 9.9K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_386.go

    func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/encoding/xml/read.go

    		// Slice of element values.
    		// Grow slice.
    		n := val.Len()
    		val.Grow(1)
    		val.SetLen(n + 1)
    
    		// Recur to read element into slice.
    		if err := d.unmarshalAttr(val.Index(n), attr); err != nil {
    			val.SetLen(n)
    			return err
    		}
    		return nil
    	}
    
    	if val.Type() == attrType {
    		val.Set(reflect.ValueOf(attr))
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. src/log/slog/handler.go

    			state.sep = ""
    		}
    	}
    	// Remember the position in the buffer, in case all attrs are empty.
    	pos := state.buf.Len()
    	state.openGroups()
    	if !state.appendAttrs(as) {
    		state.buf.SetLen(pos)
    	} else {
    		// Remember the new prefix for later keys.
    		h2.groupPrefix = state.prefix.String()
    		// Remember how many opened groups are in preformattedAttrs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux.go

    	var iov Iovec
    	if len(p) > 0 {
    		iov.Base = &p[0]
    		iov.SetLen(len(p))
    	}
    	var dummy byte
    	if len(oob) > 0 {
    		if len(p) == 0 {
    			var sockType int
    			sockType, err = GetsockoptInt(fd, SOL_SOCKET, SO_TYPE)
    			if err != nil {
    				return
    			}
    			// receive at least one normal byte
    			if sockType != SOCK_DGRAM {
    				iov.Base = &dummy
    				iov.SetLen(1)
    			}
    		}
    		msg.Control = &oob[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. test/escape_reflect.go

    	return v.Cap()
    }
    
    func cap3(x chan int) int { // ERROR "x does not escape"
    	v := reflect.ValueOf(x)
    	return v.Cap()
    }
    
    func setlen(x *[]int, n int) { // ERROR "x does not escape"
    	v := reflect.ValueOf(x).Elem()
    	v.SetLen(n)
    }
    
    func setcap(x *[]int, n int) { // ERROR "x does not escape"
    	v := reflect.ValueOf(x).Elem()
    	v.SetCap(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                    mojoV4.execute();
                } catch (MojoException e) {
                    throw new MojoExecutionException(e.getMessage(), e);
                }
            }
    
            @Override
            public void setLog(Log log) {}
    
            @Override
            public Log getLog() {
                return null;
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

            /**
             * @return String
             */
            public String getJjj() {
                return jjj;
            }
    
            /**
             * @param kkk
             */
            public void setKkk(final String kkk) {
                this.kkk = kkk;
            }
    
            /**
             * @param arg1
             * @param arg2
             * @return Number
             */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    	msg.Namelen = uint32(SizeofSockaddrAny)
    	var dummy byte
    	if len(oob) > 0 {
    		// receive at least one normal byte
    		if emptyIovecs(iov) {
    			var iova [1]Iovec
    			iova[0].Base = &dummy
    			iova[0].SetLen(1)
    			iov = iova[:]
    		}
    		msg.Control = (*byte)(unsafe.Pointer(&oob[0]))
    		msg.SetControllen(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top