Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 3,957 for Filler (0.16 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/StackTraceFilterTest.groovy

    class StackTraceFilterTest extends Specification {
        def spec = Mock(Spec)
        def filter = new StackTraceFilter(spec)
        def exception = new Exception()
        def trace = exception.stackTrace as List
    
        def "returns a new trace rather than mutating the original one"() {
            spec.isSatisfiedBy(_) >> true
    
            when:
            def filtered = filter.filter(trace)
    
            then:
            !filtered.is(trace)
            trace == old(trace)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/policies.go

    }
    
    // PrintServiceSummary prints a summary of the relevant services in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintPolicySummary(filter PolicyFilter) error {
    	w := c.tabwriter()
    	zDump := c.ztunnelDump
    
    	pols := slices.Filter(zDump.Policies, filter.Verify)
    	slices.SortFunc(pols, func(a, b *ZtunnelPolicy) int {
    		if r := cmp.Compare(a.Namespace, b.Namespace); r != 0 {
    			return r
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. cmd/metacache-set.go

    		// Sanity check, should not happen.
    		o.FilterPrefix = ""
    	}
    }
    
    // filter will apply the options and return the number of objects requested by the limit.
    // Will return io.EOF if there are no more entries with the same filter.
    // The last entry can be used as a marker to resume the listing.
    func (r *metacacheReader) filter(o listPathOptions) (entries metaCacheEntriesSorted, err error) {
    	// Forward to prefix, if any
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/cert_authenticator_test.go

    		certChain          [][]*x509.Certificate
    		caller             *security.Caller
    		authenticateErrMsg string
    		fakeAuthInfo       *mockAuthInfo
    	}{
    		"No client certificate": {
    			certChain:          nil,
    			caller:             nil,
    			authenticateErrMsg: "no client certificate is presented",
    		},
    		"Unsupported auth type": {
    			certChain:          nil,
    			caller:             nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 01:20:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestFilter.java

         *
         * @param testNamePatterns class or method name patterns to set, may contain wildcard '*'
         * @return this filter object
         */
        TestFilter setIncludePatterns(String... testNamePatterns);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/StackTraceSanitizer.java

            final String calledFromName = calledFrom.getName();
            boolean calledFromFound = false;
            int caller;
            for (caller = 0; caller < originalStack.length; caller++) {
                StackTraceElement current = originalStack[caller];
                if (!calledFromFound) {
                    if (current.getClassName().startsWith(calledFromName)) {
                        calledFromFound = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.td

      (CreateXLAConvOpFromTFConv2DOp
        $input, $filter, /*input_zp=*/(CreateScalarIntegerConst<"int32_t", "0">),
        $conv, $strides,
        $dilations, $padding, $explicit_padding),
      [(IsInt32ElementType $input),
       (IsInt8ElementType $filter),
       (IsConstTensor $filter),
       (IsInt32ElementType $conv),
       (HasStaticShapeConstraint $filter),
       (HasStaticShapeAtDimsConstraint<"3"> $input)],
      [], (addBenefit 10)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		return false
    	}
    
    	return fcMatch.Filter != nil
    }
    
    // We assume that the parent listener and filter chain have already been matched
    func networkFilterMatch(filter *listener.Filter, cp *model.EnvoyFilterConfigPatchWrapper) bool {
    	if !hasNetworkFilterMatch(cp) {
    		return true
    	}
    
    	return cp.Match.GetListener().FilterChain.Filter.Name == filter.Name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. istioctl/pkg/authz/listener.go

    	return nil
    }
    
    func getHTTPConnectionManager(filter *listener.Filter) *hcm.HttpConnectionManager {
    	cm := &hcm.HttpConnectionManager{}
    	if err := getFilterConfig(filter, cm); err != nil {
    		log.Errorf("failed to get HTTP connection manager config: %s", err)
    		return nil
    	}
    	return cm
    }
    
    func getHTTPFilterConfig(filter *hcm.HttpFilter, out proto.Message) error {
    	switch c := filter.ConfigType.(type) {
    	case *hcm.HttpFilter_TypedConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. pkg/scheduler/testing/framework/fake_plugins.go

    const ErrReasonFake = "Nodes failed the fake plugin"
    
    // FalseFilterPlugin is a filter plugin which always return Unschedulable when Filter function is called.
    type FalseFilterPlugin struct{}
    
    // Name returns name of the plugin.
    func (pl *FalseFilterPlugin) Name() string {
    	return "FalseFilter"
    }
    
    // Filter invoked at the filter extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top