Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for silver (0.64 sec)

  1. 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)
  2. 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)
  3. cmd/batch-handlers.go

    	hasTags := len(r.Flags.Filter.Tags) != 0
    	isMetadata := len(r.Flags.Filter.Metadata) != 0
    	isStorageClassOnly := len(r.Flags.Filter.Metadata) == 1 && strings.EqualFold(r.Flags.Filter.Metadata[0].Key, xhttp.AmzStorageClass)
    
    	skip := func(oi ObjectInfo) (ok bool) {
    		if r.Flags.Filter.OlderThan > 0 && time.Since(oi.ModTime) < r.Flags.Filter.OlderThan {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //   OneHot(index, depth, on=1.0f, off=0.0f, axis=-1) * filter
    // With
    //   EmbeddingLookup(index, Transpose(filter))
    //
    // OneHot with on=1 off=0 axis=-1, where `index` is a single element tensor,
    // creates a tensor of size depth, and all values are 0, except for the element
    // at `index`, which is 1. Multiplying such a tensor with a 2D filter esentially
    // returns the single column in filter as a 1D tensor. If the input has multiple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    		},
    		{
    			name: "pod with anti-affinity is preempted",
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterPluginAsExtensions(noderesources.Name, nodeResourcesFitFunc, "Filter", "PreFilter"),
    				tf.RegisterPluginAsExtensions(interpodaffinity.Name, interpodaffinity.New, "Filter", "PreFilter"),
    			},
    			nodeNames: []string{"node1", "node2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    		}
    		if len(l.FilterChains) != 1 {
    			t.Fatalf("expected %d filter chains, found %d", 1, len(l.FilterChains))
    		} else {
    			if !isHTTPFilterChain(l.FilterChains[0]) {
    				t.Fatalf("expected http filter chain, found %s", l.FilterChains[1].Filters[0].Name)
    			}
    			if len(l.ListenerFilters) > 0 {
    				t.Fatalf("expected %d listener filter, found %d", 0, len(l.ListenerFilters))
    			}
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_logging_test.go

    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"server - gateway",
    			[]config.Config{newTelemetry("istio-system", server)},
    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{},
    		},
    		{
    			"server - inbound",
    			[]config.Config{newTelemetry("istio-system", server)},
    			networking.ListenerClassSidecarInbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			filter := push.EnvoyFilters(tt.proxy)
    			if filter == nil {
    				if tt.expectedClusterPatches != 0 || tt.expectedListenerPatches != 0 {
    					t.Errorf("Got no envoy filter")
    				}
    				return
    			}
    			if len(filter.Patches[networking.EnvoyFilter_CLUSTER]) != tt.expectedClusterPatches {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top