Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for exportName (0.45 sec)

  1. src/cmd/compile/internal/typecheck/iexport.go

    // qualifying prefix and reverting blank-name encoding. See TparamExportName
    // for details.
    func TparamName(exportName string) string {
    	// Remove the "path" from the type param name that makes it unique.
    	ix := strings.LastIndex(exportName, ".")
    	if ix < 0 {
    		return ""
    	}
    	name := exportName[ix+1:]
    	if strings.HasPrefix(name, blankMarker) {
    		return "_"
    	}
    	return name
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/iimport.go

    // for details.
    func tparamName(exportName string) string {
    	// Remove the "path" from the type param name that makes it unique.
    	ix := strings.LastIndex(exportName, ".")
    	if ix < 0 {
    		errorf("malformed type parameter export name %s: missing prefix", exportName)
    	}
    	name := exportName[ix+1:]
    	if strings.HasPrefix(name, blankMarker) {
    		return "_"
    	}
    	return name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. cmd/admin-router.go

    		// Export IAM info to zipped file
    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/export-iam").HandlerFunc(adminMiddleware(adminAPI.ExportIAM, noGZFlag))
    
    		// Import IAM info
    		adminRouter.Methods(http.MethodPut).Path(adminVersion + "/import-iam").HandlerFunc(adminMiddleware(adminAPI.ImportIAM, noGZFlag))
    
    		// IDentity Provider configuration APIs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    	allSvcAcctsFile,
    	userPolicyMappingsFile,
    	groupPolicyMappingsFile,
    	stsUserPolicyMappingsFile,
    }
    
    // ExportIAMHandler - exports all iam info as a zipped file
    func (a adminAPIHandlers) ExportIAM(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	// Get current object layer instance.
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.ExportIAMAction)
    	if objectAPI == nil {
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    			Policies: policies,
    			Group:    groupDN,
    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach group policy: %v", caseNum, err)
    		}
    	}
    
    	contentReader, err := s.adm.ExportIAM(ctx)
    	if err != nil {
    		c.Fatalf("export %d: Unable to export IAM: %v", caseNum, err)
    	}
    	defer contentReader.Close()
    
    	expContent, err := io.ReadAll(contentReader)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top