Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for billion (0.17 sec)

  1. docs/site-replication/run-multi-site-ldap.sh

    ./mc admin replicate add minio1 minio2 minio3
    
    ./mc idp ldap policy attach minio1 consoleAdmin --user="uid=dillon,ou=people,ou=swengg,dc=min,dc=io"
    sleep 5
    
    ./mc admin user info minio2 "uid=dillon,ou=people,ou=swengg,dc=min,dc=io"
    ./mc admin user info minio3 "uid=dillon,ou=people,ou=swengg,dc=min,dc=io"
    ./mc admin policy create minio1 rw ./docs/site-replication/rw.json
    
    sleep 5
    Shell Script
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Feb 14 04:51:23 GMT 2024
    - 10K bytes
    - Viewed (1)
  2. android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java

      private static final Integer I1 = -1;
      private static final Integer I2 = 3;
      private static final String S0 = "3";
      private static final String S1 = "Ninety five";
      private static final String S2 = "44 one million";
      private static final String S3 = "Lowly laundry lefties";
      private static final String S4 = "89273487U#*&#";
      private static final Double D0 = 9.234d;
      private static final Double D1 = -1.2e55;
    
      @Benchmark
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 2.2K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java

      private static final Integer I1 = -1;
      private static final Integer I2 = 3;
      private static final String S0 = "3";
      private static final String S1 = "Ninety five";
      private static final String S2 = "44 one million";
      private static final String S3 = "Lowly laundry lefties";
      private static final String S4 = "89273487U#*&#";
      private static final Double D0 = 9.234d;
      private static final Double D1 = -1.2e55;
    
      @Benchmark
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 2.2K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    }`)
    	err = s.adm.AddCannedPolicy(ctx, policy, policyBytes)
    	if err != nil {
    		c.Fatalf("policy add error: %v", err)
    	}
    
    	if err = s.adm.AddUser(ctx, "dillon", "dillon-123"); err != nil {
    		c.Fatalf("policy add error: %v", err)
    	}
    
    	err = s.adm.SetPolicy(ctx, policy, "dillon", false)
    	if err != nil {
    		c.Fatalf("Unable to set policy: %v", err)
    	}
    
    	assumeRole := cr.STSAssumeRole{
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 18 19:09:19 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  5. docs/site-replication/gen-oidc-sts-cred.go

    		ProviderURL:  "http://127.0.0.1:5556/dex",
    		RedirectURL:  "http://127.0.0.1:10000/oauth_callback",
    	}
    
    	oidcToken, err := cmd.MockOpenIDTestUserInteraction(ctx, appParams, "dillon@example.io", "dillon")
    	if err != nil {
    		log.Fatalf("Failed to generate OIDC token: %v", err)
    	}
    
    	roleARN := os.Getenv("ROLE_ARN")
    	webID := cr.STSWebIdentity{
    		Client:      &http.Client{},
    		STSEndpoint: endpoint,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 29 01:27:09 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NbtAddress.java

     * ---------------------------------------------
     * JMORRIS2        <00>  UNIQUE      Registered
     * BILLING-NY      <00>  GROUP       Registered
     * JMORRIS2        <03>  UNIQUE      Registered
     * JMORRIS2        <20>  UNIQUE      Registered
     * BILLING-NY      <1E>  GROUP       Registered
     * JMORRIS         <03>  UNIQUE      Registered
     * 
     * MAC Address = 00-B0-34-21-FA-3B
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/NetbiosAddress.java

     * ---------------------------------------------
     * JMORRIS2        <00>  UNIQUE      Registered
     * BILLING-NY      <00>  GROUP       Registered
     * JMORRIS2        <03>  UNIQUE      Registered
     * JMORRIS2        <20>  UNIQUE      Registered
     * BILLING-NY      <1E>  GROUP       Registered
     * JMORRIS         <03>  UNIQUE      Registered
     * 
     * MAC Address = 00-B0-34-21-FA-3B
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/math/StatsTesting.java

          BigInteger.valueOf(Long.MAX_VALUE)
              .multiply(BigInteger.valueOf(Long.MAX_VALUE))
              .divide(BigInteger.valueOf(16L))
              .doubleValue();
    
      /**
       * Returns a stream of a million primitive doubles. The stream is parallel, which should cause
       * {@code collect} calls to run in multithreaded mode, so testing the combiner as well as the
       * supplier and accumulator.
       */
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 23.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/LinearTransformation.java

     * transformation in which case {@code x} has a constant value for all {@code y}. In the
     * non-vertical case, {@code m} is the slope of the transformation (and a horizontal transformation
     * has zero slope).
     *
     * @author Pete Gillin
     * @since 20.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class LinearTransformation {
    
      /**
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * 
     *    Name               Type         Status
     * ---------------------------------------------
     * JMORRIS2        <00>  UNIQUE      Registered
     * BILLING-NY      <00>  GROUP       Registered
     * JMORRIS2        <03>  UNIQUE      Registered
     * JMORRIS2        <20>  UNIQUE      Registered
     * BILLING-NY      <1E>  GROUP       Registered
     * JMORRIS         <03>  UNIQUE      Registered
     * 
     * MAC Address = 00-B0-34-21-FA-3B
     * </blockquote></pre>
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
Back to top