Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,351 for filterFn (0.16 sec)

  1. pkg/test/framework/label/filter.go

    // limitations under the License.
    
    package label
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    // Selector is a Set of label filter expressions that get applied together to decide whether tests should be selected
    // for execution or not.
    type Selector struct {
    	// The constraints are and'ed together.
    	present Set
    	absent  Set
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    			filter := &listener.Filter{
    				Name:       wellknown.HTTPConnectionManager,
    				ConfigType: &listener.Filter_TypedConfig{TypedConfig: protoconv.MessageToAny(httpConnectionManagers[i])},
    			}
    			filterChain.Filters = append(filterChain.Filters, filter)
    			log.Debugf("attached HTTP filter with %d http_filter options to listener %q filter chain %d",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectCollection.java

     *
     * <p>The filtered collections returned by the filtering methods, such as {@link #matching(Closure)}, return collections that are live. That is, they reflect
     * changes made to the source collection that they were created from. This is true for filtered collections made from filtered collections etc.</p>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 31 01:48:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/testdata/accesslog/filter.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      accessLogging:
        - providers:
            - name: envoy
          filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 19 17:39:03 UTC 2022
    - 208 bytes
    - Viewed (0)
  5. tools/bug-report/pkg/filter/filter.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package filter
    
    import (
    	"fmt"
    
    	"istio.io/istio/pkg/util/sets"
    	cluster2 "istio.io/istio/tools/bug-report/pkg/cluster"
    	"istio.io/istio/tools/bug-report/pkg/config"
    	"istio.io/istio/tools/bug-report/pkg/util/match"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/filter.xml

    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="urlFilter"
    		class="org.codelibs.fess.crawler.filter.impl.UrlFilterImpl" instance="prototype">
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 364 bytes
    - Viewed (0)
  7. src/go/doc/filter.go

    		}
    		if n > 0 {
    			a[w] = td
    			w++
    		}
    	}
    	return a[0:w]
    }
    
    // Filter eliminates documentation for names that don't pass through the filter f.
    // TODO(gri): Recognize "Type.Method" as a name.
    func (p *Package) Filter(f Filter) {
    	p.Consts = filterValues(p.Consts, f)
    	p.Vars = filterValues(p.Vars, f)
    	p.Types = filterTypes(p.Types, f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	}
    	return NewFilter(compilationResults)
    }
    
    // filter implements the Filter interface
    type filter struct {
    	compilationResults []CompilationResult
    }
    
    func NewFilter(compilationResults []CompilationResult) Filter {
    	return &filter{
    		compilationResults,
    	}
    }
    
    func convertObjectToUnstructured(obj interface{}) (*unstructured.Unstructured, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FilteringProvider.java

    import org.gradle.api.InvalidUserCodeException;
    import org.gradle.api.specs.Spec;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    
    /**
     * A filtering provider that uses a spec to filter the value of another provider.
     **/
    public class FilteringProvider<T> extends AbstractMinimalProvider<T> {
    
        protected final ProviderInternal<T> provider;
        protected final Spec<? super T> spec;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. pom.xml

    							<filters>
    								<filter>${project.basedir}/src/packaging/common/packaging.properties</filter>
    								<filter>${project.basedir}/src/packaging/deb/packaging.properties</filter>
    							</filters>
    							<resources>
    								<resource>
    									<directory>src/packaging/common/</directory>
    									<filtering>true</filtering>
    									<includes>
    										<include>**/*</include>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top