Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 999 for silver (0.94 sec)

  1. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

            this.defaultOperator = defaultOperator;
        }
    
        public void addFilter(final Filter filter) {
            filterList.add(filter);
            createFilterChain();
        }
    
        protected void createFilterChain() {
            FilterChain chain = createDefaultFilterChain();
            for (final Filter element : filterList) {
                chain = appendFilterChain(element, chain);
            }
            filterChain = chain;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.h

    };
    
    typedef dataflow::Lattice<ResourceConstructingOps> ResourceDataflowState;
    typedef dataflow::Lattice<IsComposite> IsCompositeDataflowState;
    
    void LoadResourceDataflowAnalysis(DataFlowSolver &solver);
    void LoadIsCompositeDataflowAnalysis(DataFlowSolver &solver);
    
    }  // namespace TF
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. releasenotes/notes/extended-jwt.yaml

    kind: feature
    area: security
    releaseNotes:
    - |
      **Improved** request JWT authentication to use the upstream Envoy JWT filter
      instead of the custom Istio Proxy filter. Because the new upstream JWT filter
      capabilities are needed, the feature is gated for the proxies that support
      them. Note that a custom Envoy or Wasm filter that used `istio_authn` dynamic
      metadata key  needs to be updated to use `envoy.filters.http.jwt_authn`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 491 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.td

      [(IsNotInLiftedFunc $res), (IsConstTensor $filter)], [], (addBenefit 1)>;
    
    def LiftDepthwiseConv : Pat<
      (TF_DepthwiseConv2dNativeOp:$res $input, $filter, $strides, $padding,
        $explicit_paddings, IsDataFormatNHWC:$data_format, $dilations),
      (LiftAsTFPartitionedCall<"composite_depthwise_conv2d_fn">
        (ArgumentList $input, $filter),
        (ResultList $res),
        (NamedAttributeList
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileTreeAdapterTest.groovy

            MinimalFileTree filtered = Mock()
            PatternFilterable filter = Mock()
            FileTreeAdapter adapter = newFileTreeAdapter(tree)
    
            when:
            def filteredAdapter = adapter.matching(filter)
    
            then:
            filteredAdapter instanceof FileTreeAdapter
            filteredAdapter.tree == filtered
            1 * tree.filter(filter) >> filtered
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDiagnosticProvider.kt

        public fun KtElement.getDiagnostics(filter: KaDiagnosticCheckerFilter): Collection<KaDiagnosticWithPsi<*>> =
            withValidityAssertion { analysisSession.diagnosticProvider.getDiagnosticsForElement(this, filter) }
    
        public fun KtFile.collectDiagnosticsForFile(filter: KaDiagnosticCheckerFilter): Collection<KaDiagnosticWithPsi<*>> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

            return new FilteredAction<T>(action, filter);
        }
    
        private static class FilteredAction<T> implements Action<T> {
            private final Spec<? super T> filter;
            private final Action<? super T> action;
    
            public FilteredAction(Action<? super T> action, Spec<? super T> filter) {
                this.filter = filter;
                this.action = action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/collections/ImmutableFilteredList.java

    public class ImmutableFilteredList<T> extends AbstractList<T> {
    
        private final List<T> source;
        private final BitSet filter;
    
        private ImmutableFilteredList(List<T> source, BitSet filter) {
            this.source = source;
            this.filter = filter;
        }
    
        /**
         * Creates an {@code ImmutableFilteredList} which contains all the elements of {@code source}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    		}
    	}
    }
    
    func NewClaimController(filter *resourceapi.NamedResourcesFilter, requests []*resourceapi.NamedResourcesRequest) (*Controller, error) {
    	c := &Controller{}
    	if filter != nil {
    		compilation := cel.Compiler.CompileCELExpression(filter.Selector, environment.StoredExpressions)
    		if compilation.Error != nil {
    			// Shouldn't happen because of validation.
    			return nil, fmt.Errorf("compile class filter CEL expression: %w", compilation.Error)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/SmallCharMatcher.java

      static final int MAX_SIZE = 1023;
      private final char[] table;
      private final boolean containsZero;
      private final long filter;
    
      private SmallCharMatcher(char[] table, long filter, boolean containsZero, String description) {
        super(description);
        this.table = table;
        this.filter = filter;
        this.containsZero = containsZero;
      }
    
      private static final int C1 = 0xcc9e2d51;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top