Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 453 for aSpace (0.12 sec)

  1. src/encoding/xml/marshal_test.go

    	},
    	want: `<foo xmlns="space" xmlns="space" xmlns:_xmlns="xmlns" _xmlns:bar="space" xmlns:space="space" space:baz="foo"><baz xmlns="space"></baz></foo>`,
    }, {
    	desc: "default name space not used by attributes, not explicitly defined",
    	toks: []Token{
    		StartElement{Name{"space", "foo"}, []Attr{
    			{Name{"", "xmlns"}, "space"},
    			{Name{"space", "baz"}, "foo"},
    		}},
    		StartElement{Name{"space", "baz"}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

    import org.apache.ivy.core.module.descriptor.License;
    import org.apache.ivy.core.module.descriptor.ModuleDescriptor;
    import org.apache.ivy.core.module.id.ArtifactId;
    import org.apache.ivy.core.module.id.ModuleId;
    import org.apache.ivy.core.module.id.ModuleRevisionId;
    import org.apache.ivy.plugins.matcher.PatternMatcher;
    import org.apache.ivy.plugins.namespace.Namespace;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. gradle/verification-metadata.xml

                <trusting group="commons-io"/>
                <trusting group="org.apache.commons"/>
             </trusted-key>
             <trusted-key id="CE8075A251547BEE249BC151A2115AE15F6B8B72">
                <trusting group="org.apache.ant"/>
                <trusting group="org.apache.commons"/>
                <trusting group="xmlunit"/>
                <trusting group="^org[.]apache($|([.].*))" regex="true"/>
             </trusted-key>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // six-per-em space
        assertThat(parse("http://h/\u2006").encodedPath).isEqualTo("/%E2%80%86")
        // figure space
        assertThat(parse("http://h/\u2007").encodedPath).isEqualTo("/%E2%80%87")
        // punctuation space
        assertThat(parse("http://h/\u2008").encodedPath).isEqualTo("/%E2%80%88")
        // thin space
        assertThat(parse("http://h/\u2009").encodedPath).isEqualTo("/%E2%80%89")
        // hair space
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	// provide addresses outside of those 33 bits. Pick 40 bits
    	// as a reasonable balance between address space usage by the
    	// page allocator, and flexibility for what mmap'd regions
    	// we'll accept for the heap. We can't just move to the full
    	// 48 bits because this uses too much address space for older
    	// iOS versions.
    	// TODO(mknyszek): Once iOS <14 is deprecated, promote ios/arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

    /*
     * Copyright 2013 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  7. src/strings/strings_test.go

    	}
    }
    
    var trimFuncTests = []struct {
    	f        predicate
    	in       string
    	trimOut  string
    	leftOut  string
    	rightOut string
    }{
    	{isSpace, space + " hello " + space,
    		"hello",
    		"hello " + space,
    		space + " hello"},
    	{isDigit, "\u0e50\u0e5212hello34\u0e50\u0e51",
    		"hello",
    		"hello34\u0e50\u0e51",
    		"\u0e50\u0e5212hello"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    /*
     * Copyright 2018 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    			return 0, false
    		}
    
    		if uintptr(av) == h.curArena.end {
    			// The new space is contiguous with the old
    			// space, so just extend the current space.
    			h.curArena.end = uintptr(av) + asize
    		} else {
    			// The new space is discontiguous. Track what
    			// remains of the current space and switch to
    			// the new space. This should be rare.
    			if size := h.curArena.end - h.curArena.base; size != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    import org.apache.commons.lang3.ArrayUtils;
    import org.apache.commons.lang3.StringUtils;
    import org.apache.commons.text.StringEscapeUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.CoreLibConstants;
    import org.codelibs.core.exception.IORuntimeException;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top