Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for INITIALIZING (0.15 sec)

  1. cmd/sts-handlers_test.go

    		Creds:     cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken),
    		Secure:    s.secure,
    		Transport: s.TestSuiteCommon.client.Transport,
    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that the client from sts creds can access the bucket.
    	c.mustListObjects(ctx, minioClient, bucket)
    
    	// Create an madmin client with user creds
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/interfaces.go

    type CAContentProvider interface {
    	Notifier
    
    	// Name is just an identifier.
    	Name() string
    	// CurrentCABundleContent provides ca bundle byte content. Errors can be
    	// contained to the controllers initializing the value. By the time you get
    	// here, you should always be returning a value that won't fail.
    	CurrentCABundleContent() []byte
    	// VerifyOptions provides VerifyOptions for authenticators.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesInitializationTest.groovy

    import spock.lang.Specification
    
    import javax.inject.Inject
    import java.lang.reflect.Constructor
    
    class NativeServicesInitializationTest extends Specification {
    
        def "cannot get an instance of NativeServices without initializing first" () {
            // Construct an isolated classloader so we can load a pristine NativeServices class
            // that's guaranteed not to have been initialized before
            URL[] jars = [
                jar(NativeServices),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 08:51:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    )
    
    var (
    	htmlTemplates    *template.Template // Lazily loaded templates
    	htmlTemplateInit sync.Once
    )
    
    // getHTMLTemplates returns the set of HTML templates used by pprof,
    // initializing them if necessary.
    func getHTMLTemplates() *template.Template {
    	htmlTemplateInit.Do(func() {
    		htmlTemplates = template.New("templategroup")
    		addTemplates(htmlTemplates)
    		report.AddSourceTemplates(htmlTemplates)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/NaturalOrdering.java

    @ElementTypesAreNonnullByDefault
    final class NaturalOrdering extends Ordering<Comparable<?>> implements Serializable {
      static final NaturalOrdering INSTANCE = new NaturalOrdering();
    
      // TODO: b/287198172 - Consider eagerly initializing these (but think about serialization).
      @LazyInit @CheckForNull private transient Ordering<@Nullable Comparable<?>> nullsFirst;
      @LazyInit @CheckForNull private transient Ordering<@Nullable Comparable<?>> nullsLast;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/NaturalOrdering.java

    @ElementTypesAreNonnullByDefault
    final class NaturalOrdering extends Ordering<Comparable<?>> implements Serializable {
      static final NaturalOrdering INSTANCE = new NaturalOrdering();
    
      // TODO: b/287198172 - Consider eagerly initializing these (but think about serialization).
      @LazyInit @CheckForNull private transient Ordering<@Nullable Comparable<?>> nullsFirst;
      @LazyInit @CheckForNull private transient Ordering<@Nullable Comparable<?>> nullsLast;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/escape/ArrayBasedEscaperMap.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.VisibleForTesting;
    import java.util.Collections;
    import java.util.Map;
    
    /**
     * An implementation-specific parameter class suitable for initializing {@link
     * ArrayBasedCharEscaper} or {@link ArrayBasedUnicodeEscaper} instances. This class should be used
     * when more than one escaper is created using the same character replacement mapping to allow the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/state/state_mem.go

    	machineState NUMANodeMap
    }
    
    var _ State = &stateMemory{}
    
    // NewMemoryState creates new State for keeping track of cpu/pod assignment
    func NewMemoryState() State {
    	klog.InfoS("Initializing new in-memory state store")
    	return &stateMemory{
    		assignments:  ContainerMemoryAssignments{},
    		machineState: NUMANodeMap{},
    	}
    }
    
    // GetMemoryState returns Memory Map stored in the State
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 15 19:51:19 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  9. docs/sts/client-grants.go

    		flag.PrintDefaults()
    		return
    	}
    
    	sts, err := credentials.NewSTSClientGrants(stsEndpoint, getTokenExpiry)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// Uncomment this to use MinIO API operations by initializing minio
    	// client with obtained credentials.
    
    	opts := &minio.Options{
    		Creds:        sts,
    		BucketLookup: minio.BucketLookupAuto,
    	}
    
    	u, err := url.Parse(stsEndpoint)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. cmd/server-main_test.go

    				}
    				if sctx.Layout.pools[0].cmdline != testcase.hash {
    					t.Error("expected hash", testcase.hash, "got", sctx.Layout.pools[0].cmdline)
    				}
    			}
    		})
    	}
    }
    
    // Tests initializing new object layer.
    func TestNewObjectLayer(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	// Tests for ErasureSD object layer.
    	nDisks := 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top