Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for Nl (0.03 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcherTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.eclipse.model;
    
    
    import nl.jqno.equalsverifier.EqualsVerifier
    import nl.jqno.equalsverifier.Warning
    import org.gradle.plugins.ide.eclipse.model.internal.DefaultResourceFilterMatcher
    import spock.lang.Specification
    
    public class ResourceFilterMatcherTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ResourceFilterTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.eclipse.model;
    
    
    import nl.jqno.equalsverifier.EqualsVerifier
    import nl.jqno.equalsverifier.Warning
    import org.gradle.plugins.ide.eclipse.model.internal.DefaultResourceFilter
    import org.gradle.plugins.ide.eclipse.model.internal.DefaultResourceFilterMatcher
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/cache.go

    		xv[i] = Value{}
    	}
    	nb := sort.Search(len(c.blocks), func(i int) bool { return c.blocks[i].ID == 0 })
    	xb := c.blocks[:nb]
    	for i := range xb {
    		xb[i] = Block{}
    	}
    	nl := sort.Search(len(c.locs), func(i int) bool { return c.locs[i] == nil })
    	xl := c.locs[:nl]
    	for i := range xl {
    		xl[i] = nil
    	}
    
    	// regalloc sets the length of c.regallocValues to whatever it may use,
    	// so clear according to length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/mime/multipart/multipart.go

    	// and switch into that mode if so. This is a violation of the spec,
    	// but occurs in practice.
    	if r.partsRead == 0 && len(rest) == 1 && rest[0] == '\n' {
    		r.nl = r.nl[1:]
    		r.nlDashBoundary = r.nlDashBoundary[1:]
    	}
    	return bytes.Equal(rest, r.nl)
    }
    
    // skipLWSPChar returns b with leading spaces and tabs removed.
    // RFC 822 defines:
    //
    //	LWSP-char = SPACE / HTAB
    func skipLWSPChar(b []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/code.go

    	peek2 := s
    	if p.para() == nil && peek2.trimSpace(4, 4, false) && !peek2.isBlank() {
    		b := &preBuilder{ /*indent: strings.TrimSuffix(s.string(), peek2.string())*/ }
    		p.addBlock(b)
    		p.corner = p.corner || peek2.nl != '\n' // goldmark does not normalize to \n
    		b.text = append(b.text, peek2.string())
    		return line{}, true
    	}
    	return s, false
    }
    
    func newFence(p *parseState, s line) (line, bool) {
    	var fence, info string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/Hexdump.java

     */
    
    package jcifs.smb1.util;
    
    import java.io.OutputStream;
    import java.io.PrintStream;
    
    /**
     */
    
    public class Hexdump {
    
        private static final String NL = System.getProperty( "line.separator" );
        private static final int NL_LENGTH = NL.length();
    
        private static final char[] SPACE_CHARS = {
            ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ',
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  7. cni/pkg/ipset/nldeps_linux.go

    		family = unix.AF_INET6
    	} else {
    		family = unix.AF_INET
    	}
    	err := netlink.IpsetCreate(name, "hash:ip", netlink.IpsetCreateOptions{Comments: true, Replace: true, Family: family})
    	if ipsetErr, ok := err.(nl.IPSetError); ok && ipsetErr == nl.IPSET_ERR_EXIST {
    		return nil
    	}
    
    	return err
    }
    
    func (m *realDeps) destroySet(name string) error {
    	err := netlink.IpsetDestroy(name)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/typecheck.go

    			if isddd {
    				if i >= len(nl) {
    					goto notenough
    				}
    				if len(nl)-i > 1 {
    					goto toomany
    				}
    				n = nl[i]
    				ir.SetPos(n)
    				if n.Type() != nil {
    					nl[i] = assignconvfn(n, t, desc)
    				}
    				return
    			}
    
    			// TODO(mdempsky): Make into ... call with implicit slice.
    			for ; i < len(nl); i++ {
    				n = nl[i]
    				ir.SetPos(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. src/encoding/pem/pem.go

    	if err != nil {
    		return
    	}
    
    	n, err = l.out.Write(nl)
    	if err != nil {
    		return
    	}
    
    	return l.Write(b[excess:])
    }
    
    func (l *lineBreaker) Close() (err error) {
    	if l.used > 0 {
    		_, err = l.out.Write(l.line[0:l.used])
    		if err != nil {
    			return
    		}
    		_, err = l.out.Write(nl)
    	}
    
    	return
    }
    
    func writeHeader(out io.Writer, k, v string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pkg/proxy/util/nfacct/nfacct_linux_test.go

    	flags uint16
    
    	// data holds netlink attributes.
    	data []nl.NetlinkRequestData
    
    	// response and err are the predefined output of execution.
    	response [][]byte
    	err      error
    }
    
    // Serialize is part of request interface.
    func (fr *fakeRequest) Serialize() []byte { return nil }
    
    // AddData is part of request interface.
    func (fr *fakeRequest) AddData(data nl.NetlinkRequestData) {
    	fr.data = append(fr.data, data)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top