Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tstones (0.18 sec)

  1. cmd/iam.go

    	if !sys.Initialized() {
    		return errServerNotInitialized
    	}
    
    	return sys.store.UserNotificationHandler(ctx, accessKey, svcUser)
    }
    
    // initStore initializes IAM stores
    func (sys *IAMSys) initStore(objAPI ObjectLayer, etcdClient *etcd.Client) {
    	if sys.LDAPConfig.Enabled() {
    		sys.SetUsersSysType(LDAPUsersSysType)
    	}
    
    	if etcdClient == nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // marshaling to YAML and JSON. In particular, it marshals into strings, which
    // can be used as map keys in json.
    message Duration {
      optional int64 duration = 1;
    }
    
    // FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.
    //
    // Each key is either a '.' representing the field itself, and will always map to an empty set,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *  * http://host
     *
     * Both the unnecessary port specification (`:80`) and the absent trailing slash (`/`) cause URI to
     * bucket the two URLs separately. This harms URI's usefulness in collections. Any application that
     * stores information-per-URL will need to either canonicalize manually, or suffer unnecessary
     * redundancy for such URLs.
     *
     * Because they don't attempt canonical form, these classes are surprisingly difficult to use
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  4. src/cmd/cgo/gcc.go

    	return ok && st.StructName == ""
    }
    
    // badPointerTypedef reports whether dt is a C typedef that should not be
    // considered a pointer in Go. A typedef is bad if C code sometimes stores
    // non-pointers in this type.
    // TODO: Currently our best solution is to find these manually and list them as
    // they come up. A better solution is desired.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top