Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for ipString (5.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/dir_plan9.go

    	b = pbit32(b, d.Qid.Vers)
    	b = pbit64(b, d.Qid.Path)
    	b = pbit32(b, d.Mode)
    	b = pbit32(b, d.Atime)
    	b = pbit32(b, d.Mtime)
    	b = pbit64(b, uint64(d.Length))
    	b = pstring(b, d.Name)
    	b = pstring(b, d.Uid)
    	b = pstring(b, d.Gid)
    	b = pstring(b, d.Muid)
    
    	return n, nil
    }
    
    // UnmarshalDir decodes a single 9P stat message from b and returns the resulting Dir.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. src/go/types/basic.go

    // Properties of basic types.
    const (
    	IsBoolean BasicInfo = 1 << iota
    	IsInteger
    	IsUnsigned
    	IsFloat
    	IsComplex
    	IsString
    	IsUntyped
    
    	IsOrdered   = IsInteger | IsFloat | IsString
    	IsNumeric   = IsInteger | IsFloat | IsComplex
    	IsConstType = IsBoolean | IsNumeric | IsString
    )
    
    // A Basic represents a basic type.
    type Basic struct {
    	kind BasicKind
    	info BasicInfo
    	name string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/testdata/asan_linkerx/main.go

    package main
    
    import "cmd/cgo/internal/testsanitizers/testdata/asan_linkerx/p"
    
    func pstring(s *string) {
    	println(*s)
    }
    
    func main() {
    	all := []*string{
    		&S1, &S2, &S3, &S4, &S5, &S6, &S7, &S8, &S9, &S10,
    		&p.S1, &p.S2, &p.S3, &p.S4, &p.S5, &p.S6, &p.S7, &p.S8, &p.S9, &p.S10,
    	}
    	for _, ps := range all {
    		pstring(ps)
    	}
    }
    
    var S1 string
    var S2 string
    var S3 string
    var S4 string
    var S5 string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 471 bytes
    - Viewed (0)
  4. test/ken/rob2.go

    func atom(i int) *Slist { // BUG: uses tokenbuf; should take argument)
    	var slist *Slist
    
    	slist = new(Slist)
    	if token == '0' {
    		slist.atom.integer = i
    		slist.isstring = false
    	} else {
    		slist.atom.str = string(tokenbuf[0:tokenlen])
    		slist.isstring = true
    	}
    	slist.isatom = true
    	return slist
    }
    
    func atoi() int { // BUG: uses tokenbuf; should take argument)
    	var v int = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  5. src/syscall/dir_plan9.go

    	b = pbit32(b, d.Qid.Vers)
    	b = pbit64(b, d.Qid.Path)
    	b = pbit32(b, d.Mode)
    	b = pbit32(b, d.Atime)
    	b = pbit32(b, d.Mtime)
    	b = pbit64(b, uint64(d.Length))
    	b = pstring(b, d.Name)
    	b = pstring(b, d.Uid)
    	b = pstring(b, d.Gid)
    	b = pstring(b, d.Muid)
    
    	return n, nil
    }
    
    // UnmarshalDir decodes a single 9P stat message from b and returns the resulting Dir.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        }
    
        private static String replaceAll(String regex, CharSequence inString, String byString) {
            return replaceAll(Pattern.compile(regex), inString, byString);
        }
    
        private static String replaceAll(Pattern pattern, CharSequence inString, String byString) {
            return pattern.matcher(inString).replaceAll(byString);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/go/types/conversions.go

    		return true
    	}
    
    	// "V is an integer or a slice of bytes or runes and T is a string type"
    	if (isInteger(Vu) || isBytesOrRunes(Vu)) && isString(Tu) {
    		return true
    	}
    
    	// "V is a string and T is a slice of bytes or runes"
    	if isString(Vu) && isBytesOrRunes(Tu) {
    		return true
    	}
    
    	// package unsafe:
    	// "any pointer or value of underlying type uintptr can be converted into a unsafe.Pointer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/dec.rules

    (ArraySelect [i] x:(Load <t> ptr mem)) =>
      @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.Elem().Size()*i] ptr) mem)
    
    (StringPtr x:(Load <t> ptr mem)) && t.IsString() => @x.Block (Load <typ.BytePtr> ptr mem)
    (StringLen x:(Load <t> ptr mem)) && t.IsString() => @x.Block (Load <typ.Int>
          (OffPtr <typ.IntPtr> [config.PtrSize] ptr)
          mem)
    
    // NOTE removed must-not-be-SSA condition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. operator/pkg/validate/common.go

    // each element.
    func validateStringList(vf ValidatorFunc) ValidatorFunc {
    	return func(path util.Path, val any) util.Errors {
    		msg := fmt.Sprintf("validateStringList %v", val)
    		if !util.IsString(val) {
    			err := fmt.Errorf("validateStringList %s got %T, want string", path, val)
    			printError(err)
    			return util.NewErrs(err)
    		}
    		var errs util.Errors
    		for _, s := range strings.Split(val.(string), ",") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

        }
    
        private static String replaceAll(String regex, CharSequence inString, String byString) {
            return replaceAll(Pattern.compile(regex), inString, byString);
        }
    
        private static String replaceAll(Pattern pattern, CharSequence inString, String byString) {
            return pattern.matcher(inString).replaceAll(byString);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top