Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,049 for uncommon (0.13 sec)

  1. src/internal/reflectlite/type.go

    }
    
    func (t rtype) uncommon() *uncommonType {
    	return t.Uncommon()
    }
    
    func (t rtype) String() string {
    	s := t.nameOff(t.Str).Name()
    	if t.TFlag&abi.TFlagExtraStar != 0 {
    		return s[1:]
    	}
    	return s
    }
    
    func (t rtype) common() *abi.Type { return t.Type }
    
    func (t rtype) exportedMethods() []abi.Method {
    	ut := t.uncommon()
    	if ut == nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/runtime/type.go

    }
    
    func (t rtype) string() string {
    	s := t.nameOff(t.Str).Name()
    	if t.TFlag&abi.TFlagExtraStar != 0 {
    		return s[1:]
    	}
    	return s
    }
    
    func (t rtype) uncommon() *uncommontype {
    	return t.Uncommon()
    }
    
    func (t rtype) name() string {
    	if t.TFlag&abi.TFlagNamed == 0 {
    		return ""
    	}
    	s := t.string()
    	i := len(s) - 1
    	sqBrackets := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/internal/abi/type.go

    func (t *Type) ChanDir() ChanDir {
    	if t.Kind() == Chan {
    		ch := (*ChanType)(unsafe.Pointer(t))
    		return ch.Dir
    	}
    	return InvalidDir
    }
    
    // Uncommon returns a pointer to T's "uncommon" data if there is any, otherwise nil
    func (t *Type) Uncommon() *UncommonType {
    	if t.TFlag&TFlagUncommon == 0 {
    		return nil
    	}
    	switch t.Kind() {
    	case Struct:
    		return &(*structTypeUncommon)(unsafe.Pointer(t)).u
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/v1reflect.gox

     func (t <type 23>) NumMethod () <type -11>;
     func (t <type 23>) MethodByName (name <type -16>) (m <type 24>, ok <type -15>);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  5. src/net/textproto/reader_test.go

    	b.ReportAllocs()
    	var buf bytes.Buffer
    	br := bufio.NewReader(&buf)
    	r := NewReader(br)
    	for i := 0; i < b.N; i++ {
    		buf.WriteString("uncommon-header-for-benchmark: foo\r\n\r\n")
    		h, err := r.ReadMIMEHeader()
    		if err != nil {
    			b.Fatal(err)
    		}
    		if _, ok := h["Uncommon-Header-For-Benchmark"]; !ok {
    			b.Fatal("Missing result header.")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/escape/Escapers.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.escape;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.util.HashMap;
    import java.util.Map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

            assert succeeds("verify")
            true
        }
    
        private publishModule() {
            module.configuration("sources")
            module.configuration("javadoc")
            // use uncommon classifiers that are different from those used by maven,
            // in order to prove that artifact names don't matter
            module.artifact(type: "source", classifier: "my-sources", ext: "jar", conf: "sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. docs/changelogs/upgrading_to_okhttp_4.md

    3.x, null would yield a username or password of "null".
    
    #### HttpUrl.queryParameterValues()
    
    The return type of `HttpUrl.queryParameterValues()` is `List<String?>`. Lists that may contain null
    are uncommon and Kotlin callers may have incorrectly assigned the result to `List<String>`.
    
    
    Code Cleanup
    ------------
    
    IntelliJ and Android Studio offer a **Code Cleanup** feature that will automatically update
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/escape/Escapers.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.escape;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.util.HashMap;
    import java.util.Map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    	}
    	fint := ft.InSlice()[0]
    	switch {
    	case fint == etyp:
    		// ok - same type
    		goto okarg
    	case fint.Kind_&abi.KindMask == abi.Pointer:
    		if (fint.Uncommon() == nil || etyp.Uncommon() == nil) && (*ptrtype)(unsafe.Pointer(fint)).Elem == ot.Elem {
    			// ok - not same type, but both pointers,
    			// one or the other is unnamed, and same element type, so assignable.
    			goto okarg
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top