Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for authsds (0.27 sec)

  1. pkg/credentialprovider/config_test.go

    	}
    }
    func TestDockerConfigJsonJSONDecode(t *testing.T) {
    	// Fake values for testing.
    	input := []byte(`{"auths": {"http://foo.example.com":{"username": "foo", "password": "bar", "email": "******@****.***"}, "http://bar.example.com":{"username": "bar", "password": "baz", "email": "******@****.***"}}}`)
    
    	expect := DockerConfigJSON{
    		Auths: DockerConfig(map[string]DockerConfigEntry{
    			"http://foo.example.com": {
    				Username: "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. pkg/kube/util.go

    			Token:                 auths.Token,
    			TokenFile:             auths.TokenFile,
    			Impersonate:           auths.Impersonate,
    			ImpersonateGroups:     auths.ImpersonateGroups,
    			ImpersonateUserExtra:  auths.ImpersonateUserExtra,
    			Username:              auths.Username,
    			Password:              auths.Password,
    			AuthProvider:          auths.AuthProvider, // Included because it is sanitized above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/credentialprovider/config.go

    )
    
    const (
    	maxReadLength = 10 * 1 << 20 // 10MB
    )
    
    // DockerConfigJSON represents ~/.docker/config.json file info
    // see https://github.com/docker/docker/pull/12009
    type DockerConfigJSON struct {
    	Auths DockerConfig `json:"auths"`
    	// +optional
    	HTTPHeaders map[string]string `json:"HttpHeaders,omitempty"`
    }
    
    // DockerConfig represents the config file used by the docker CLI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. .github/actions/people/app/main.py

            counter=experts_results.commenters,
            authors=authors,
            skip_users=skip_users,
        )
        last_month_experts = get_top_users(
            counter=experts_results.last_month_commenters,
            authors=authors,
            skip_users=skip_users,
        )
        three_months_experts = get_top_users(
            counter=experts_results.three_months_commenters,
            authors=authors,
            skip_users=skip_users,
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_dataclasses/test_tutorial003.py

                                    }
                                },
                            },
                        },
                    }
                },
                "/authors/": {
                    "get": {
                        "summary": "Get Authors",
                        "operationId": "get_authors_authors__get",
                        "responses": {
                            "200": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. LICENSES/vendor/github.com/JeffAshton/win_pdh/LICENSE

    3. The names of the authors may not be used to endorse or promote products
       derived from this software without specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationKotlinDslIntegTest.groovy

                licenses.size() == 1
                licenses[0].@name == 'The Apache License, Version 2.0'
                licenses[0].@url == 'http://www.apache.org/licenses/LICENSE-2.0.txt'
                authors.size() == 1
                authors[0].@name == 'Jane Doe'
                authors[0].@url == 'http://example.com/users/jane'
                description.text() == "A concise description of my library"
                description.@homepage == 'http://www.example.com/library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/fiat/README

        NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    The authors are listed at
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_main.txt

    -- standalone_main_normal_test.go --
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package standalone_main_normal_test
    
    import "testing"
    
    func TestMain(t *testing.T) {
    }
    -- standalone_main_wrong_test.go --
    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 17 00:45:15 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/generate.txt

    -- generate/simple.go --
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Simple test for go generate.
    
    // We include a build tag that go generate should ignore.
    
    // +build ignore
    
    //go:generate echo Success
    
    package p
    -- generate/alias.go --
    // Copyright 2014 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top