Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ui (0.2 sec)

  1. cmd/iam-store.go

    	cache := store.lock()
    	defer store.unlock()
    
    	ui, ok := cache.iamUsersMap[accessKey]
    	if !ok || !ui.Credentials.IsServiceAccount() {
    		return updatedAt, errNoSuchServiceAccount
    	}
    	cr := ui.Credentials
    	currentSecretKey := cr.SecretKey
    	if opts.secretKey != "" {
    		if !auth.IsSecretKeyValid(opts.secretKey) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  2. docs/en/docs/release-notes.md

    * ⬆ Upgrade Swagger UI - swagger-ui-dist@4. This handles a security issue in Swagger UI itself where it could be possible to inject HTML into Swagger UI. Please upgrade as soon as you can, in particular if you expose your Swagger UI (`/docs`) publicly to non-expert users. PR [#4347](https://github.com/tiangolo/fastapi/pull/4347) by [@RAlanWright](https://github.com/RAlanWright)....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  3. cmd/site-replication.go

    	if cntReplicated > 0 && cntReplicated != total {
    		return false
    	}
    	// check if policies match between sites
    	var prev madmin.UserInfo
    	for i, ui := range uis {
    		if i == 0 {
    			prev = ui
    			continue
    		}
    		if !isUserInfoEqual(prev, ui) {
    			return false
    		}
    	}
    	return true
    }
    
    func isGroupDescReplicated(cntReplicated, total int, gds []madmin.GroupDesc) bool {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  4. cmd/storage-rest-server.go

    			resp.Update = &update
    			out <- resp
    		}
    	}()
    	ui, err := s.getStorage().NSScanner(ctx, *params.Cache, updates, madmin.HealScanMode(params.ScanMode), nil)
    	wg.Wait()
    	if err != nil {
    		return grid.NewRemoteErr(err)
    	}
    	// Send final response.
    	resp := storageNSScannerRPC.NewResponse()
    	resp.Final = &ui
    	out <- resp
    	return nil
    }
    
    // MakeVolHandler - make a volume.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  5. RELEASE.md

        *   Display summaries of numeric tensor values with the `-s` flag to command
            `print_tensor` or `pt`.
        *   Display feed values with the `print_feed` or `pf` command and clickable
            links in the curses UI.
        *   Runtime profiler at the op level and the Python source line level with
            the `run -p` command.
    *   Initial release of the statistical distribution library `tf.distributions`.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top