Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Flagcount (0.24 sec)

  1. src/cmd/asm/internal/flags/flags.go

    	flag.BoolVar(&DebugV, "v", false, "print debug output")
    	flag.Var(objabi.NewDebugFlag(&DebugFlags, nil), "d", "enable debugging settings; try -d help")
    	objabi.AddVersionFlag() // -V
    	objabi.Flagcount("S", "print assembly and machine code", &PrintOut)
    }
    
    // MultiFlag allows setting a value multiple times to collect a list, as in -I=dir1 -I=dir2.
    type MultiFlag []string
    
    func (m *MultiFlag) String() string {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 22 19:18:23 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    	c.Helper()
    
    	oinfo, err := client.StatObject(ctx, bucket, object, minio.StatObjectOptions{})
    	if err != nil {
    		c.Fatalf("user was unable to download the object: %v", err)
    	}
    
    	if oinfo.UserTagCount != tagCount {
    		c.Fatalf("expected tagCount: %d, got %d", tagCount, oinfo.UserTagCount)
    	}
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 12 16:36:16 GMT 2024
    - 45.7K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    			replCfgs := make([]*sreplication.Config, numSites)
    			quotaCfgs := make([]*madmin.BucketQuota, numSites)
    			sseCfgSet := set.NewStringSet()
    			versionCfgSet := set.NewStringSet()
    			var tagCount, olockCfgCount, sseCfgCount, versionCfgCount int
    			for i, s := range slc {
    				if s.ReplicationConfig != nil {
    					cfgBytes, err := base64.StdEncoding.DecodeString(*s.ReplicationConfig)
    					if err != nil {
    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)
Back to top