Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetStringsValue (0.15 sec)

  1. src/internal/syscall/windows/registry/registry_test.go

    		return
    	}
    }
    
    func testGetStringsValue(t *testing.T, k registry.Key, test ValueTest) {
    	got, gottype, err := k.GetStringsValue(test.Name)
    	if err != nil {
    		t.Errorf("GetStringsValue(%s) failed: %v", test.Name, err)
    		return
    	}
    	if !equalStringSlice(got, test.Value.([]string)) {
    		t.Errorf("want %s value %#v, got %#v", test.Name, test.Value, got)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/value.go

    		}
    		r = make([]uint16, n)
    	}
    }
    
    // GetStringsValue retrieves the []string value for the specified
    // value name associated with an open key k. It also returns the value's type.
    // If value does not exist, GetStringsValue returns ErrNotExist.
    // If value is not MULTI_SZ, it will return the correct value
    // type and ErrUnexpectedType.
    func (k Key) GetStringsValue(name string) (val []string, valtype uint32, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top