Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for ninit (0.11 sec)

  1. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    
    	// TODO(harry) any global place for these two?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    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
        cd "${CERT_DIR}"
        ./easyrsa init-pki
        # this puts the cert into pki/ca.crt and the key into pki/private/ca.key
        # PRIMARY_CN (expected to be) defined by caller
        # shellcheck disable=SC2153
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	testCases := []*TestSuiteCommon{
    		// Init and run test on ErasureSD backend with signature v4.
    		{serverType: "ErasureSD", signer: signerV4},
    		// Init and run test on ErasureSD backend with signature v2.
    		{serverType: "ErasureSD", signer: signerV2},
    		// Init and run test on ErasureSD backend, with tls enabled.
    		{serverType: "ErasureSD", signer: signerV4, secure: true},
    		// Init and run test on Erasure backend.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    gState:"uk-drag",clsBase:"uk-sortable",clsNoDrag:"uk-sortable-nodrag",clsEmpty:"uk-sortable-empty",clsCustom:"",handle:!1,pos:{}},created:function(){var i=this;["init","start","move","end"].forEach(function(t){var e=i[t];i[t]=function(t){i.scrollY=window.pageYOffset,G(i.pos,re(t,"page")),e(t)}})},events:{name:pt,passive:!1,handler:"init"},update:{write:function(){if(this.clsEmpty&&He(this.$el,this.clsEmpty,O(this.$el.children)),Ve(this.handle?Ne(this.handle,this.$el):this.$el.children,{touchActi...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        shape_inference::InferenceContext* shape_context =
            shape_refiner_->GetContext(&node);
        return shape_ic(shape_context);
      }
    
      // Treat TensorList init ops specially here as the op requires knowing its
      // element dtype.
      // TODO(jpienaar): Reconsider post refactoring shape functions.
      if (node.type_string() == "TensorListReserve" ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        val sslContext2 = get().newSSLContext()
        sslContext2.init(null, null, null)
        val sslSocketFactory2 = sslContext2.socketFactory
        val trustManagerFactory =
          TrustManagerFactory.getInstance(
            TrustManagerFactory.getDefaultAlgorithm(),
          )
        trustManagerFactory.init(null as KeyStore?)
        val trustManager = trustManagerFactory.trustManagers[0] as X509TrustManager
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TF::CreateConvertReadonlyReferenceVariablesToResourceVariablesPass()";
    }
    
    def ReplicateTensorListInitOpsPass : Pass<"tf-replicate-tensor-list-init-ops", "mlir::func::FuncOp"> {
      let summary =
        "Replicate TensorList init ops for correct shape assignments in shape inference";
    
      let description = [{
        If we pass same TensorList to a while op as multiple arguments or just use
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      if [[ -e /etc/default/etcd ]]; then
        rm -f /etc/default/etcd
      fi
      if [[ -e /etc/systemd/system/etcd.service ]]; then
        rm -f /etc/systemd/system/etcd.service
      fi
      if [[ -e /etc/init.d/etcd ]]; then
        rm -f /etc/init.d/etcd
      fi
      if [[ -n "${ETCD_RUNASUSER:-}" && -n "${ETCD_RUNASGROUP:-}" ]]; then
        chown -R "${ETCD_RUNASUSER}":"${ETCD_RUNASGROUP}" /mnt/disks/master-pd/var/etcd
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

              {{ if .Values.istio_cni.enabled -}}
              - name: istio-validation
              {{ else -}}
              - name: istio-init
              {{ end -}}
              {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy_init.image) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    					{EphemeralContainerCommon: api.EphemeralContainerCommon{Name: "e2"}},
    				},
    			},
    			wantContainers: []string{"c1", "c2"},
    			mask:           Containers,
    		},
    		{
    			desc: "init containers",
    			spec: &api.PodSpec{
    				Containers: []api.Container{
    					{Name: "c1"},
    					{Name: "c2"},
    				},
    				InitContainers: []api.Container{
    					{Name: "i1"},
    					{Name: "i2"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top