Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,734 for tmpl (0.83 sec)

  1. cmd/kubeadm/app/util/runtime/impl.go

    package runtime
    
    import (
    	"context"
    	"time"
    
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	criclient "k8s.io/cri-client/pkg"
    )
    
    type defaultImpl struct{}
    
    type impl interface {
    	NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (criapi.RuntimeService, error)
    	NewRemoteImageService(endpoint string, connectionTimeout time.Duration) (criapi.ImageManagerService, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/resources/META-INF/analysis-api/analysis-api-impl-base.xml

            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.java.source.JavaElementSourceWithSmartPointerFactory"
        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.psi.KotlinReferenceProvidersService"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.references.HLApiReferenceProviderService"
        />
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/crypto/ecdh/x25519.go

    		z2.Multiply(&z2, &tmp1)
    		tmp0.Square(&tmp1)
    		tmp1.Square(&x2)
    		x3.Add(&z3, &z2)
    		z2.Subtract(&z3, &z2)
    		x2.Multiply(&tmp1, &tmp0)
    		tmp1.Subtract(&tmp1, &tmp0)
    		z2.Square(&z2)
    
    		z3.Mult32(&tmp1, 121666)
    		x3.Square(&x3)
    		tmp0.Add(&tmp0, &z3)
    		z3.Multiply(&x1, &z2)
    		z2.Multiply(&tmp1, &tmp0)
    	}
    
    	x2.Swap(&x3, swap)
    	z2.Swap(&z3, swap)
    
    	z2.Invert(&z2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. helm/minio/templates/_helpers.tpl

    {{- end -}}
    
    {{/*
    Formats volume for MinIO TLS keys and trusted certs
    */}}
    {{- define "minio.tlsKeysVolume" -}}
    {{- if .Values.tls.enabled }}
    - name: cert-secret-volume
      secret:
        secretName: {{ tpl .Values.tls.certSecret $ }}
        items:
        - key: {{ .Values.tls.publicCrt }}
          path: public.crt
        - key: {{ .Values.tls.privateKey }}
          path: private.key
    {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. misc/cgo/gmp/pi.go

    	"fmt"
    	"runtime"
    )
    
    var (
    	tmp1  = big.NewInt(0)
    	tmp2  = big.NewInt(0)
    	numer = big.NewInt(1)
    	accum = big.NewInt(0)
    	denom = big.NewInt(1)
    	ten   = big.NewInt(10)
    )
    
    func extractDigit() int64 {
    	if big.CmpInt(numer, accum) > 0 {
    		return -1
    	}
    	tmp1.Lsh(numer, 1).Add(tmp1, numer).Add(tmp1, accum)
    	big.DivModInt(tmp1, tmp2, tmp1, denom)
    	tmp2.Add(tmp2, numer)
    	if big.CmpInt(tmp2, denom) >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. manifests/charts/gateway/templates/_helpers.tpl

    Lukasz Dobrzanski <******@****.***> 1718318549 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/templates/_helpers.tpl

    Ben Leggett <******@****.***> 1715982749 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 218 bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/_helpers.tpl

    John Howard <******@****.***> 1702437816 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 817 bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/_helpers.tpl

    John Howard <******@****.***> 1702437816 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 817 bytes
    - Viewed (0)
  10. helm/minio/templates/_helper_policy.tpl

    Mathieu Parent <******@****.***> 1692455951 +0200
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 19 14:39:11 UTC 2023
    - 872 bytes
    - Viewed (0)
Back to top