Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 176 for silver (0.14 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                return;
            }
            String filter = subRoleSet.stream().map(s -> String.format(groupFilter, s)).collect(Collectors.joining());
            if (subRoleSet.size() > 1) {
                filter = "(|" + filter + ")";
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("Group Filter: {}", filter);
            }
            search(bindDn, filter, null, () -> ldapUser.getEnvironment(), result -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/suggest_analyzer.json

    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    						},
    					},
    					Filters: []*listener.Filter{
    						{Name: "network-filter-to-be-replaced"},
    					},
    				},
    				{
    					Name: "filter-chain-name-not-match",
    					Filters: []*listener.Filter{
    						{Name: "custom-network-filter-1"},
    						{Name: "custom-network-filter-2"},
    					},
    				},
    				{
    					Name: "filter-chain-name-match",
    					Filters: []*listener.Filter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            // TODO always returns empty list
            return split(getIndexAdminArrayFields(), ",").get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim)
                    .filter(s -> isNonEmptyValue(source.get(s))).filter(s -> false) // TODO
                    .collect(Collectors.toList()));
        }
    
        String getIndexAdminDateFields();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    					return
    				}
    			}
    			// Add tcp filter chain, build TCP filter chain first.
    			tcpOpts := buildSidecarOutboundTCPListenerOpts(listenerOpts, virtualServices)
    
    			// Add http filter chain and tcp filter chain to the listener opts
    			httpOpts := buildSidecarOutboundHTTPListenerOpts(listenerOpts, actualWildcards[0], listenerProtocol)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		return nil
    	}
    	resp := &istio.HTTPRedirect{}
    	if filter.StatusCode != nil {
    		// Istio allows 301, 302, 303, 307, 308.
    		// Gateway allows only 301 and 302.
    		resp.RedirectCode = uint32(*filter.StatusCode)
    	}
    	if filter.Hostname != nil {
    		resp.Authority = string(*filter.Hostname)
    	}
    	if filter.Scheme != nil {
    		// Both allow http and https
    		resp.Scheme = *filter.Scheme
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

    envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.metadata_exchange --- apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: stats-filter-1.6-1-8-6 namespace: istio-system labels: istio.io/rev: 1-8-6 spec: configPatches: - applyTo: HTTP_FILTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.6.*' listener: filterChain: filter: name: "envoy.http_connection_manager" subFilter: name: "envoy.router" patch: operation: INSERT_BEFORE value: name: istio.stats typed_config: "@type":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            "expand(Map)"               | "expand([:])"
            "filter(Closure)"           | "filter {}"
            "filter(Class)"             | "filter(PushbackReader)"
            "filter(Map, Class)"        | "filter([:], PushbackReader)"
            "filter(Transformer)"       | "filter(org.gradle.internal.Transformers.noOpTransformer())"
            "rename(Closure)"           | "rename {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      }
    
     private:
      // Legalize the given filter by converting it from TensorFlow filter data
      // format HWIO to TFLite Conv2D op filter data format OHWI and return Value
      // for the converted filter.  Requires that filter is verified by the match
      // method that it is a 4-D RankedTensorType.
      Value legalizeFilter(PatternRewriter &rewriter, Location loc,
                           Value filter) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %5 = stablehlo.constant  // Quantized filter tensor q2.
    // %6 = stablehlo.convert %5  // Optional: i8 -> f32 cast trick for filter.
    // %7 = stablehlo.convolution(%4, %6)  // q1 * q2 (disguised in f32).
    // %8 = stablehlo.reshape %2  // z1
    // %9 = stablehlo.broadcast_in_dim %8
    // %10 = stablehlo.convert %9  // i8 -> f32 cast trick for z1.
    // %11 = stablehlo.convert %5  // i8 -> f32 cast trick for filter.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top