Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for my_ver (0.14 sec)

  1. .github/workflows/arm-ci-extended-cpp.yml

    permissions:
      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. .github/workflows/arm-cd.yml

      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. docs/distributed/decom.sh

    (minio server /tmp/xltier/{1...4}/disk{0...1} --address :9002 2>&1 >/dev/null) &
    
    export MC_HOST_mytier="http://minioadmin:minioadmin@localhost:9002/"
    
    ./mc ready myminio
    
    ./mc mb -l myminio/bucket2
    ./mc mb -l mytier/tiered
    
    ## create a tier and set up ilm policy to tier immediately
    ./mc admin tier add minio myminio TIER1 --endpoint http://localhost:9002 --access-key minioadmin --secret-key minioadmin --bucket tiered --prefix prefix5/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. .github/workflows/arm-ci.yml

        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            proxyServer.requestCount == 2
        }
    
        @Issue('https://github.com/gradle/gradle/issues/5052')
        def "downloads wrapper via authenticated proxy"() {
            given:
            proxyServer.start('my_user', 'my_password')
    
            and:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getAuthenticatedBaseUrl())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			writeKubeConfigFunction: func(out io.Writer) error {
    				return WriteKubeConfigWithClientCert(out, cfg, "myUser", []string{"myOrg"}, notAfter)
    			},
    		},
    		{
    			name: "WriteKubeConfigWithToken",
    			writeKubeConfigFunction: func(out io.Writer) error {
    				return WriteKubeConfigWithToken(out, cfg, "myUser", "12345", notAfter)
    			},
    		},
    	}
    
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. plugin/pkg/admission/security/podsecurity/admission_test.go

    				namespace, "mypod",
    				schema.GroupVersionResource{Group: "", Version: "v1", Resource: "pods"},
    				"",
    				admission.Create, &metav1.CreateOptions{}, false,
    				&user.DefaultInfo{Name: "myuser"},
    			)
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				if err := p.Validate(ctx, attrs, nil); err != nil {
    					b.Fatal(err)
    				}
    			}
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:29:47 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            and:
            proxyServer.requestCount == 1
        }
    
        def "downloads wrapper via authenticated proxy"() {
            given:
            proxyServer.start('my_user', 'my_password')
    
            and:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(server.uri.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/bearertoken/bearertoken_test.go

    			TokenAuth: authenticator.TokenFunc(func(ctx context.Context, t string) (*authenticator.Response, bool, error) {
    				return &authenticator.Response{User: &user.DefaultInfo{Name: "myuser"}}, true, nil
    			}),
    			ExpectedUserName:             "myuser",
    			ExpectedOK:                   true,
    			ExpectedErr:                  false,
    			ExpectedAuthorizationHeaders: nil,
    		},
    		"invalid bearer token": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 25 13:22:28 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol_test.go

    			TokenAuth: authenticator.TokenFunc(func(ctx context.Context, t string) (*authenticator.Response, bool, error) {
    				return &authenticator.Response{User: &user.DefaultInfo{Name: "myuser"}}, true, nil
    			}),
    			ExpectedUserName:        "myuser",
    			ExpectedOK:              true,
    			ExpectedErr:             false,
    			ExpectedProtocolHeaders: []string{"dummy,dummy2"},
    		},
    		"invalid bearer token": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 21:43:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top