Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for mypair (0.13 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_kubernetes.yaml

                    value: |
                      fieldRef:
                        apiVersion: v2
                        fieldPath: metadata.myPath
                  # Deletion of list item
                  - path: spec.template.spec.containers.[name:discovery].env.[name:REVISION]
                  # Deletion of map item
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/TlsUtil.kt

          val chain = arrayOfNulls<Certificate>(1 + intermediates.size)
          chain[0] = heldCertificate.certificate
          intermediates.copyInto(chain, 1)
          keyStore.setKeyEntry("private", heldCertificate.keyPair.private, password, chain)
        }
    
        val factory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm())
        factory.init(keyStore, password)
        val result = factory.keyManagers!!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/metrics.go

    	// divided by the type of error:
    	// leak, repair, full, outOfRange, duplicate, invalid, unknown
    	clusterIPRepairIPErrors = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "ip_errors_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt

            .addTrustedCertificate(root.certificate) // BouncyCastle requires at least one
            .heldCertificate(certificate, intermediate.certificate)
            .build()
        assertPrivateKeysEquals(
          certificate.keyPair.private,
          handshakeCertificates.keyManager.getPrivateKey("private"),
        )
        assertThat(handshakeCertificates.keyManager.getCertificateChain("private").toList())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. cmd/xl-storage-meta-inline.go

    		if err != nil {
    			return fmt.Errorf("xlMetaInlineData: %w", err)
    		}
    	}
    
    	return nil
    }
    
    // repair will copy all seemingly valid data entries from a corrupted set.
    // This does not ensure that data is correct, but will allow all operations to complete.
    func (x *xlMetaInlineData) repair() {
    	data := *x
    	if len(data) == 0 {
    		return
    	}
    
    	if !data.versionOK() {
    		*x = nil
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

                  apiVersion: v1
                  fieldPath: metadata.name
            - name: POD_NAMESPACE
              valueFrom:
                fieldRef:
                  apiVersion: v2
                  fieldPath: metadata.myPath
            - name: SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  apiVersion: v1
                  fieldPath: spec.serviceAccountName
            - name: KUBECONFIG
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. tests/integration/ambient/cnirepair/main_test.go

    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        repair:
          enabled: true
      ztunnel:
        terminationGracePeriodSeconds: 5
        env:
          SECRET_TTL: 5m
    `
    		}, cert.CreateCASecretAlt)).
    		Setup(func(t resource.Context) error {
    			return SetupApps(t, i, apps)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultModuleComponentSelectorTest.groovy

            when:
            def selector = DefaultModuleComponentSelector.newSelector(DefaultModuleIdentifier.newId('some-group', 'some-name'), v('1.0'))
            boolean matches = selector.matchesStrictly(newProjectId(':mypath'))
    
            then:
            assert !matches
        }
    
        def "matches id (#group, #name, #version)"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue51139.go

    }
    
    // test case from issue
    
    func Append[S ~[]T, T any](s S, x ...T) S { /* implementation of append */ return s }
    
    func _() {
            type MyPtr *int
            var x []MyPtr
            _ = append(x, new(int))
            _ = Append(x, new(int))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 20:55:32 UTC 2023
    - 649 bytes
    - Viewed (0)
  10. tests/integration/pilot/cni_race_test.go

    			if _, err := shell.Execute(true, rolloutCmd); err != nil {
    				t.Fatalf("failed to rollout restart deployments %v", err)
    			}
    			waitForBrokenPodOrFail(t, c, ns)
    
    			t.Log("Redeploy CNI and verify repair takes effect by evicting the broken pod")
    			// Now bring back CNI Daemonset, and pod in the echo namespace should be repaired.
    			deployCNIDaemonset(t, c, cniDaemonSet)
    			waitForRepairOrFail(t, c, ns)
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top