Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 657 for silver (0.1 sec)

  1. pkg/kube/kclient/client_test.go

    	c := kube.NewFakeClient()
    	c.RunAndWait(test.NewStop(t))
    	cases := []struct {
    		name   string
    		gvr    schema.GroupVersionResource
    		filter kclient.Filter
    		want   kubetypes.InformerOptions
    	}{
    		{
    			name: "watch pods in the foo namespace",
    			gvr:  gvr.Pod,
    			filter: kclient.Filter{
    				Namespace: "foo",
    			},
    			want: kubetypes.InformerOptions{
    				Namespace: "foo",
    				Cluster:   c.ClusterID(),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    type composedFilter struct {
    	// The primary filter, which has a handler. Optional
    	filter kubetypes.DynamicObjectFilter
    	// Secondary filters (no handler allowed)
    	extra []func(obj any) bool
    }
    
    func (f composedFilter) Filter(obj any) bool {
    	for _, filter := range f.extra {
    		if !filter(obj) {
    			return false
    		}
    	}
    	if f.filter != nil {
    		return f.filter.Filter(obj)
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: rule[0]-from[0]-requestPrincipal[1]
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. pkg/wasm/convert.go

    				return nil, nil, nil, fmt.Errorf("failed to convert extension config struct %+v to Wasm HTTP filter", typedStruct)
    			}
    		} else {
    			// This is not a Wasm filter.
    			wasmLog.Debugf("typed extension config %+v does not contain wasm http filter", typedStruct)
    			return nil, nil, nil, nil
    		}
    	default:
    		// This is not a Wasm filter.
    		wasmLog.Debugf("cannot find typed config or typed struct in %+v", ec)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

            return findFirst(source, filter) != null;
        }
    
        public static <T> Set<T> filter(Set<? extends T> set, Spec<? super T> filter) {
            return filter(set, new LinkedHashSet<T>(), filter);
        }
    
        public static <T> List<T> filter(List<? extends T> list, Spec<? super T> filter) {
            return filter(list, Lists.<T>newArrayListWithCapacity(list.size()), filter);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    	sort.Ints(ports)
    	filter := &listener.ListenerFilter{
    		Name:       wellknown.TLSInspector,
    		ConfigType: xdsfilters.TLSInspector.ConfigType,
    		// Exclude all disabled ports
    		FilterDisabled: listenerPredicateIncludePorts(ports),
    	}
    	return filter
    }
    
    // buildHTTPInspector creates an http inspector filter. Based on the configured ports, this may be enabled
    // for only some ports.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. src/image/png/writer.go

    	if e.err != nil {
    		return 0, e.err
    	}
    	return len(b), nil
    }
    
    // Chooses the filter to use for encoding the current row, and applies it.
    // The return value is the index of the filter and also of the row in cr that has had it applied.
    func filter(cr *[nFilter][]byte, pr []byte, bpp int) int {
    	// We try all five filter types, and pick the one that minimizes the sum of absolute differences.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

                return this;
            }
    
            @Override
            public ExclusiveContentRepository filter(Action<? super InclusiveRepositoryContentDescriptor> config) {
                filter = filter == null ? config : Actions.composite(filter, config);
                return this;
            }
    
            void apply(Action<? super ExclusiveContentRepository> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

        def "lazily resolves an exclude name to tasks in the target build"() {
            when:
            def filter = selector.resolveExcludedTaskName(target, "task")
    
            then:
            filter.build == target
    
            and:
            0 * target.ensureProjectsConfigured()
            0 * taskSelector._
    
            when:
            filter.filter.isSatisfiedBy(Stub(Task))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

    void HandleConv2DFilter(TF::Conv2DOp conv2d, int64_t block_size) {
      // For example, if filter shape is [7, 7, 3, 64] with block_size 2,
      // will apply below transforms to the filter:
      // 1. Pad the filter to [8, 8, 3, 64]
      // 2. Reshape to [4, 2, 4, 2, 3, 64]
      // 3. Transpose to [4, 4, 2, 2, 3, 64]
      // 4. Reshape to [4, 4, 12, 64]
      auto filter = conv2d.getFilter();
      OpBuilder builder(conv2d);
      builder.setInsertionPoint(conv2d);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top