Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for casorder (0.28 sec)

  1. pilot/pkg/bootstrap/server.go

    	// certWatcher watches the certificates for changes and triggers a notification to Istiod.
    	cacertsWatcher *fsnotify.Watcher
    	dnsNames       []string
    
    	CA       *ca.IstioCA
    	RA       ra.RegistrationAuthority
    	caServer *caserver.Server
    
    	// TrustAnchors for workload to workload mTLS
    	workloadTrustBundle *tb.TrustBundle
    	certMu              sync.RWMutex
    	istiodCert          *tls.Certificate
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. cmd/storage-datatypes.go

    	fi.Erasure = ErasureInfo{
    		Algorithm:    erasureAlgorithm,
    		DataBlocks:   dataBlocks,
    		ParityBlocks: parityBlocks,
    		BlockSize:    blockSizeV2,
    		Distribution: hashOrder(object, dataBlocks+parityBlocks),
    	}
    	return fi
    }
    
    // ReadMultipleReq contains information of multiple files to read from disk.
    type ReadMultipleReq struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation_test.go

    		},
    	}
    
    	_, key, err := ed25519.GenerateKey(rand.Reader)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	csrDER, err := x509.CreateCertificateRequest(rand.Reader, template, key)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	csrPemBlock := &pem.Block{
    		Type:  "CERTIFICATE REQUEST",
    		Bytes: csrDER,
    	}
    
    	p := pem.EncodeToMemory(csrPemBlock)
    	if p == nil {
    		t.Fatal("invalid pem block")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    	meta.Namespace = "fake-namespace"
    	meta.ServiceAccount = "fake-sa"
    	meta.ProxyConfig = pc
    	return meta
    }
    
    func setupCa(t *testing.T, auth *security.FakeAuthenticator) *mock.CAServer {
    	t.Helper()
    	opt := tlsOptions(t)
    	s, err := mock.NewCAServerWithKeyCert(0,
    		testutil.ReadFile(t, filepath.Join(env.IstioSrc, "./tests/testdata/certs/pilot/ca-key.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    				return
    			}
    			actualSha256 := actualH.Sum(nil)
    
    			z := obj.(*erasureServerPools)
    			er := z.serverPools[0].getHashedSet(object)
    
    			disks := er.getDisks()
    			distribution := hashOrder(pathJoin(bucket, object), nDisks)
    			shuffledDisks := shuffleDisks(disks, distribution)
    
    			// remove last data shard
    			err = removeAll(pathJoin(shuffledDisks[11].String(), bucket, object))
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top