Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 156 for facets (0.15 sec)

  1. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

                    + "    <pattern>javax.faces</pattern>\n"
                    + "    <shadedPattern>jakarta.faces</shadedPattern>\n"
                    + "  </relocation>\n"
                    + "</relocations>";
            String expected = "<relocations combine.children=\"append\">\n"
                    + "  <relocation>\n"
                    + "    <pattern>javax.faces</pattern>\n"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/crypto/x509/root_linux.go

    	"/etc/pki/tls/certs", // Fedora/RHEL
    }
    
    func init() {
    	if goos.IsAndroid == 1 {
    		certDirectories = append(certDirectories,
    			"/system/etc/security/cacerts",    // Android system roots
    			"/data/misc/keychain/certs-added", // User trusted CA folder
    		)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:55:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    	fakeStats := map[string]*volume.Metrics{
    		kuberuntime.BuildContainerLogsDirectory(testPodLogDirectory, "sb0-ns", "sb0-name", types.UID("sb0-uid"), "c0"): c0LogStats,
    	}
    	fakeOS := &kubecontainertest.FakeOS{}
    	fakeHostStatsProvider := NewFakeHostStatsProviderWithData(fakeStats, fakeOS)
    
    	p := &criStatsProvider{
    		clock:             fakeClock,
    		hostStatsProvider: fakeHostStatsProvider,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                requestedTime = data.getRequestedTime();
                final FacetResponse facetResponse = data.getFacetResponse();
                if (facetResponse != null && facetResponse.hasFacetResponse()) {
                    // facet field
                    if (facetResponse.getFieldList() != null) {
                        facetField = facetResponse.getFieldList().stream().map(field -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	{abcd, "", -1, []string{"a", "b", "c", "d"}},
    	{commas, ",", -1, []string{"1", "2", "3", "4"}},
    	{dots, "...", -1, []string{"1", ".2", ".3", ".4"}},
    	{faces, "☹", -1, []string{"☺☻", ""}},
    	{faces, "~", -1, []string{faces}},
    	{faces, "", -1, []string{"☺", "☻", "☹"}},
    	{"1 2 3 4", " ", 3, []string{"1", "2", "3 4"}},
    	{"1 2", " ", 3, []string{"1", "2"}},
    	{"123", "", 2, []string{"1", "23"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. security/pkg/pki/util/crypto.go

    }
    
    // PemCertBytestoString: takes an array of PEM certs in bytes and returns a string array in the same order with
    // trailing newline characters removed
    func PemCertBytestoString(caCerts []byte) []string {
    	certs := []string{}
    	var cert string
    	pemBlock := caCerts
    	for block, rest := pem.Decode(pemBlock); block != nil && len(block.Bytes) != 0; block, rest = pem.Decode(pemBlock) {
    		if len(rest) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionTypeProvider.kt

        /**
         * Returns `true` if this expression is definitely null, based on declared nullability and smart cast types derived from
         * data-flow analysis facts. Examples:
         * ```
         *   public fun <T : Any> foo(t: T, nt: T?, s: String, ns: String?) {
         *     t     // t.isDefinitelyNull()  == false && t.isDefinitelyNotNull()  == true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    					Names:    c.explicitNames,
    				})
    
    				ca, err := caCertFromBundle(certBundleFile)
    				if err != nil {
    					t.Fatalf("failed to extract ca cert from SNI cert %d: %v", j, err)
    				}
    				caCerts = append(caCerts, ca)
    
    				// store index in namedCertKeys with the signature as the key
    				sig, err := certFileSignature(certBundleFile, keyFile)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    	Run:      run,
    }
    
    // flags
    var funcs, stringMethods stringSetFlag
    
    func init() {
    	// TODO(adonovan): provide a comment or declaration syntax to
    	// allow users to add their functions to this set using facts.
    	// For example:
    	//
    	//    func ignoringTheErrorWouldBeVeryBad() error {
    	//      type mustUseResult struct{} // enables vet unusedresult check
    	//      ...
    	//    }
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/main_test.go

    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
    values:
       gateways:
          istio-egressgateway:
             secretVolumes:
             - name: client-custom-certs
               secretName: egress-gw-cacerts
               mountPath: /etc/certs/custom
    {{- end }}
    `, map[string]bool{"isExternalControlPlane": ctx.AllClusters().IsExternalControlPlane()})
    
    	cfg.GatewayValues = `
    components:
      egressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top