Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for AsObject (0.36 sec)

  1. src/crypto/x509/verify_test.go

    		}
    
    		k, ok := keys[e.Subject]
    		if !ok {
    			var err error
    			k, err = ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    			if err != nil {
    				t.Fatalf("failed to generate test key: %s", err)
    			}
    			keys[e.Subject] = k
    		}
    		cert := genCertEdge(t, e.Subject, k, e.MutateTemplate, e.Type, issuerCert, issuerKey)
    		certs[e.Subject] = cert
    		if e.Subject == d.Leaf {
    			leaf = cert
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    			continue
    		}
    
    		if out.Subject.CommonName != template.Subject.CommonName {
    			t.Errorf("%s: output subject common name and template subject common name don't match", test.name)
    		} else if len(out.Subject.Organization) != len(template.Subject.Organization) {
    			t.Errorf("%s: output subject organisation and template subject organisation don't match", test.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -d 203.0.113.0/24 -m comment --comment "ip-masq: RFC 5737 reserved range is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 100.64.0.0/10 -m comment --comment "ip-masq: RFC 6598 reserved range is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 198.18.0.0/15 -m comment --comment "ip-masq: RFC 6815 reserved range is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    # The generated files are IN ${CERT_DIR}
    #
    # Assumed vars (see shellcheck disable directives below)
    #   KUBE_TEMP
    #   MASTER_NAME
    #   CERT_DIR
    #   PRIMARY_CN: Primary canonical name
    #   SANS: Subject alternate names
    #
    #
    function generate-certs {
      local -r cert_create_debug_output=$(mktemp "${KUBE_TEMP}/cert_create_debug_output.XXX")
      # Note: This was heavily cribbed from make-ca-cert.sh
      (set -x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    		},
    		// Generate options=Wide; print subject and roles.
    		{
    			binding: rbac.RoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "binding2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Subjects: []rbac.Subject{
    					{
    						Kind: "User",
    						Name: "user-name",
    					},
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            taskPosition >= 0
            transformationPosition1 < taskPosition
            transformationPosition2 < taskPosition
        }
    
        def "scheduled transformation is only invoked once per subject"() {
            given:
            createDirs("util2")
            settingsFile << """
                include 'util2'
            """
            buildFile << declareAttributes() << multiProjectWithJarSizeTransform() << withJarTasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    scheduler_pending_pods{queue="active"} 50
    scheduler_pending_pods{queue="backoff"} 0
    scheduler_pending_pods{queue="gated"} 10
    scheduler_pending_pods{queue="unschedulable"} 0
    `,
    		},
    		{
    			name: "make some pods subject to backoff, add pods to unschedulablePods, and then move all to activeQ",
    			operations: []operation{
    				addPodUnschedulablePods,
    				moveClockForward,
    				addPodUnschedulablePods,
    				moveAllToActiveOrBackoffQ,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val desiredType: KaType
            val subject: KtExpression
            val description: String
            val isCastToNotNull: Boolean
        }
    
        interface SmartcastImpossibleOnImplicitInvokeReceiver : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = SmartcastImpossibleOnImplicitInvokeReceiver::class
            val desiredType: KaType
            val subject: KtExpression
            val description: String
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaFirDiagnostic.TypeVarianceConflictInExpandedType
    
    internal class SmartcastImpossibleImpl(
        override val desiredType: KaType,
        override val subject: KtExpression,
        override val description: String,
        override val isCastToNotNull: Boolean,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    // There are two different resolutions applied.
    // First, there is Go 1.5 vendoring (golang.org/s/go15vendor).
    // If vendor expansion doesn't trigger, then the path is also subject to
    // Go 1.11 module legacy conversion (golang.org/issue/25069).
    func ResolveImportPath(parent *Package, path string) (found string) {
    	var parentPath, parentDir, parentRoot string
    	parentIsStd := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top