Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 254 for dsts (0.1 sec)

  1. src/image/draw/draw_test.go

    	loop:
    		for sName, src := range sources {
    			dst0 := image.NewPaletted(b, cgaPalette)
    			dst1 := image.NewPaletted(b, cgaPalette)
    			d.Draw(dst0, b, src, image.Point{})
    			d.Draw(embeddedPaletted{dst1}, b, src, image.Point{})
    			for y := b.Min.Y; y < b.Max.Y; y++ {
    				for x := b.Min.X; x < b.Max.X; x++ {
    					if !eq(dst0.At(x, y), dst1.At(x, y)) {
    						t.Errorf("%s / %s: at (%d, %d), %v versus %v",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/transform/transform.go

    // n <= len(src), If err == nil, n will be len(src). It calls Reset on t.
    func Append(t Transformer, dst, src []byte) (result []byte, n int, err error) {
    	if len(dst) == cap(dst) {
    		n := len(src) + len(dst) // It is okay for this to be 0.
    		b := make([]byte, n)
    		dst = b[:copy(b, dst)]
    	}
    	return doAppend(t, len(dst), dst[:cap(dst)], src)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. cmd/sts-datatypes.go

    	"encoding/xml"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    // AssumedRoleUser - The identifiers for the temporary security credentials that
    // the operation returns. Please also see https://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumedRoleUser
    type AssumedRoleUser struct {
    	// The ARN of the temporary security credentials that are returned from the
    	// AssumeRole action. For more information about ARNs and how to use them in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    			AccessKey: "dillon",
    			SecretKey: "dillon-123",
    			Location:  "",
    		},
    	}
    
    	value, err := assumeRole.Retrieve()
    	if err != nil {
    		c.Fatalf("Expected to generate STS creds, got err: %#v", err)
    	}
    
    	// Check that the LDAP sts cred is actually working.
    	minioClient, err := minio.New(s.endpoint, &minio.Options{
    		Creds:     cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. cmd/sts-errors.go

    	},
    	ErrSTSNotInitialized: {
    		Code:           "STSNotInitialized",
    		Description:    "STS API not initialized, please try again.",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSTSIAMNotInitialized: {
    		Code:           "STSIAMNotInitialized",
    		Description:    "STS IAM not initialized, please try again.",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSTSUpstreamError: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. cmd/sts-handlers.go

    	return nil
    }
    
    // stsAPIHandlers implements and provides http handlers for AWS STS API.
    type stsAPIHandlers struct{}
    
    // registerSTSRouter - registers AWS STS compatible APIs.
    func registerSTSRouter(router *mux.Router) {
    	// Initialize STS.
    	sts := &stsAPIHandlers{}
    
    	// STS Router
    	stsRouter := router.NewRoute().PathPrefix(SlashSeparator).Subrouter()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. test/fixedbugs/bug237.go

    package main
    
    import "fmt"
    
    var indent uint = 10
    func main() {
    	const dots = ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . " +
    		". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    	const n = uint(len(dots))
    	i := 2 * indent
    	var s string
    	for ; i > n; i -= n {
    		s += fmt.Sprint(dots)
    	}
    	s += dots[0:i]
    	if s != ". . . . . . . . . . " {
    		panic(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 557 bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelectionTest.groovy

            when:
            select('more.than.two.dots')
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message == "'more.than.two.dots' is an invalid pattern. Patterns should have one or two dots."
        }
    
        def "can use filters with two dots or fewer"() {
            when:
            select('one.dot', 'has.two.dots', 'ModuleName')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/path/filepath/example_test.go

    package filepath_test
    
    import (
    	"fmt"
    	"path/filepath"
    )
    
    func ExampleExt() {
    	fmt.Printf("No dots: %q\n", filepath.Ext("index"))
    	fmt.Printf("One dot: %q\n", filepath.Ext("index.js"))
    	fmt.Printf("Two dots: %q\n", filepath.Ext("main.test.js"))
    	// Output:
    	// No dots: ""
    	// One dot: ".js"
    	// Two dots: ".js"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:24:37 UTC 2017
    - 475 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/settings.gradle

    println settings['gradlePropertiesProp']
    // end::gradle-properties[]
    
    // tag::properties-with-dots[]
    // In Groovy scripts, both the API and dynamic array notation work
    println providers.gradleProperty('gradleProperties.with.dots').get()
    println settings['gradleProperties.with.dots']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 642 bytes
    - Viewed (0)
Back to top