Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for FATAL (0.04 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    				if v, ok := rs.rootSelected(m.Path); !ok || v != m.Version {
    					base.Errorf("go: vendored module %v should be required explicitly in go.mod", m)
    					inconsistent = true
    				}
    			}
    			if inconsistent {
    				base.Fatal(errGoModDirty)
    			}
    
    			// Now we can treat the rest of the module graph as effectively “pruned
    			// out”, as though we are viewing the main module from outside: in vendor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    		bootstrapTrace(fmt.Sprintf("poolMeta.Init: loading pool metadata, attempt: %d", attempt), func() {
    			err = z.Init(ctx) // Initializes all pools.
    		})
    		if err != nil {
    			if !configRetriableErrors(err) {
    				logger.Fatal(err, "Unable to initialize backend")
    			}
    			retry := time.Duration(r.Float64() * float64(5*time.Second))
    			storageLogIf(ctx, fmt.Errorf("Unable to initialize backend: %w, retrying in %s", err, retry))
    			time.Sleep(retry)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    				testCacheExpire = time.Unix(0, t)
    			}
    		}
    	}
    
    	b := work.NewBuilder("")
    	defer func() {
    		if err := b.Close(); err != nil {
    			base.Fatal(err)
    		}
    	}()
    
    	var builds, runs, prints []*work.Action
    	var writeCoverMetaAct *work.Action
    
    	if cfg.BuildCoverPkg != nil {
    		match := make([]func(*load.Package) bool, len(cfg.BuildCoverPkg))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    		c.Fatalf("root user should have access to all buckets")
    	}
    
    	// This must fail.
    	if err := userAdmClient.AddUser(ctx, globalActiveCred.AccessKey, globalActiveCred.SecretKey); err == nil {
    		c.Fatal("AddUser() for root credential must fail via root STS creds")
    	}
    }
    
    // SetUpLDAP - expects to setup an LDAP test server using the test LDAP
    // container and canned data from https://github.com/minio/minio-ldap-testing
    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