Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 147 for _privates (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      @get:JvmName("proxyAuthenticator")
      val proxyAuthenticator: Authenticator =
        builder.proxyAuthenticator
    
      @get:JvmName("socketFactory")
      val socketFactory: SocketFactory = builder.socketFactory
    
      private val sslSocketFactoryOrNull: SSLSocketFactory?
    
      @get:JvmName("sslSocketFactory")
      val sslSocketFactory: SSLSocketFactory
        get() = sslSocketFactoryOrNull ?: throw IllegalStateException("CLEARTEXT-only client")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				Address:            "192.168.1.2",
    				Port:               10250,
    				ReadOnlyPort:       10251,
    				TLSCertFile:        "tls-cert-file",
    				TLSPrivateKeyFile:  "tls-private-key-file",
    				TLSCipherSuites:    []string{"TLS_AES_128_GCM_SHA256"},
    				TLSMinVersion:      "1.3",
    				RotateCertificates: true,
    				ServerTLSBootstrap: true,
    				Authentication: v1beta1.KubeletAuthentication{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

          --bind-address="${API_BIND_ADDR}" \
          --secure-port="${API_SECURE_PORT}" \
          --tls-cert-file="${CERT_DIR}/serving-kube-apiserver.crt" \
          --tls-private-key-file="${CERT_DIR}/serving-kube-apiserver.key" \
          --storage-backend="${STORAGE_BACKEND}" \
          --storage-media-type="${STORAGE_MEDIA_TYPE}" \
          --etcd-servers="http://${ETCD_HOST}:${ETCD_PORT}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

            &state, rewriter, op->getLoc(), tf_op.getType(), input, filter, bias);
    
        rewriter.replaceOp(op, conv_op.getResult());
        return success();
      }
    
      const IntegerAttr intAttrOne;
    
     private:
      bool allow_bf16_and_f16_type_legalization_;
    };
    
    class ConvertTFConv2D : public ConvertTFConvOp<ConvertTFConv2D, TF::Conv2DOp> {
     public:
      using BaseType = ConvertTFConvOp<ConvertTFConv2D, TF::Conv2DOp>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

        `HeldCertificate` is a TLS certificate and its private key. Generate a certificate with its
        builder then use it to sign another certificate or perform a TLS handshake. The
        `certificatePem()` method encodes the certificate in the familiar PEM format
        (`--- BEGIN CERTIFICATE ---`); the `privateKeyPkcs8Pem()` does likewise for the private key.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    		case *rsa.PrivateKey:
    			return &pem.Block{Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(k)}
    		case *ecdsa.PrivateKey:
    			b, err := x509.MarshalECPrivateKey(k)
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "Unable to marshal ECDSA private key: %v", err)
    				os.Exit(2)
    			}
    			return &pem.Block{Type: "EC PRIVATE KEY", Bytes: b}
    		default:
    			return nil
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("variants = [{artifactType=jar, color=green, org.gradle.status=release}, {artifactType=jar, color=green, org.gradle.status=release}, {artifactType=jar, color=green, org.gradle.status=release}]")
        }
    
        private void setupBuildWithArtifactTransformsOfExternalDependenciesThatTakeUpstreamDependencies() {
            httpServer.start()
            def dep1 = withColorVariants(remoteRepo.module("group", "thing1", "1.2")).publish().allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

        }
    
        private Map<String, List<String>> groupArtifactTransformByArtifactName() {
            return buildOperations.progress(IdentifyTransformExecutionProgressDetails)
                .groupBy { it.details["artifactName"] as String }
                .collectEntries { [(it.key): it.value.collect { it.details["transformActionClass"] }] }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        CreateCondTrueBranch(op, shape_dtype, result_type, then_branch_op,
                             &rewriter);
        then_branch_op.setVisibility(func::FuncOp::Visibility::Private);
    
        // Constructs `else_branch`, which is executed when `if_cond` evaluates to
        // false.
        auto else_branch_op =
            rewriter.create<func::FuncOp>(loc, "cond_false", func_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            assertConfigCacheDiscarded()
        }
    
        private static void tamperWithFile(File file) {
            file.bytes = [0, 1, 2, 3] + file.readBytes().toList() as byte[]
        }
    
        private void writeLocalKeyring(SimpleKeyRing keyring, File target, Boolean valid) {
            if (valid == null) {
                return
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top