Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 333 for unwrapped (0.13 sec)

  1. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.h

    // implementations of certain APIs that are required for calibration.
    // `module_op` is the input graph to be quantized and it should contain
    // StableHLO ops.
    //
    // Returns a quantized `ModuleOp` in StableHLO, potentially wrapped inside a
    // XlaCallModuleOp. Returns a non-OK status if quantization fails, or any of
    // `saved_model_bundle` or `quantization_py_function_lib` is a nullptr.
    absl::StatusOr<mlir::ModuleOp> RunQuantization(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. operator/cmd/operator/server.go

    	log.Infof("Creating operator metrics exporter available at %s", metricsOptions.BindAddress)
    	registry := ctrlmetrics.Registry.(*prometheus.Registry)
    	wrapped := prometheus.WrapRegistererWithPrefix("istio_install_operator_", registry)
    
    	if _, err := monitoring.RegisterPrometheusExporter(wrapped, registry); err != nil {
    		log.Warnf("Error while building exporter: %v", err)
    	}
    
    	log.Info("Registering Components.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo_custom_call.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer --emit-stablehlo-ops=true %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir --disable-vhlo-to-stablehlo=true - -o - | FileCheck %s
    // test stablehlo roundtrip
    
    //test TF ops wrapped in stablehlo custom_call
    
    // Identity function to make the exporter happy
    func.func @main(%arg0: tensor<4xi8>) -> tensor<4xi8> {
      func.return %arg0 : tensor<4xi8>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/envoyfilter.go

    	return true
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    func (efw *EnvoyFilterWrapper) Keys() []string {
    	if efw == nil {
    		return nil
    	}
    	keys := sets.String{}
    	for _, patches := range efw.Patches {
    		for _, patch := range patches {
    			keys.Insert(patch.Key())
    		}
    	}
    	return sets.SortedList(keys)
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. internal/deadlineconn/deadlineconn.go

    	}
    }
    
    func (c *DeadlineConn) setWriteDeadline() {
    	if c.writeDeadline > 0 {
    		c.Conn.SetWriteDeadline(time.Now().UTC().Add(c.writeDeadline))
    	}
    }
    
    // Read - reads data from the connection using wrapped buffered reader.
    func (c *DeadlineConn) Read(b []byte) (n int, err error) {
    	c.setReadDeadline()
    	n, err = c.Conn.Read(b)
    	return n, err
    }
    
    // Write - writes data to the connection.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/DefaultDeprecatedUsageProgressDetails.java

                sb.append(ste.toString());
                sb.append(SystemProperties.getInstance().getLineSeparator());
            }
            deprecation.put("stackTrace", sb.toString());
            // the properties are wrapped to an enclosing map to improve the readability of the trace files
            return Collections.singletonMap("deprecation", deprecation);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "command.execute(null, (File) null)", "", ""],
                [fromString(), "command.execute((String[]) null, (File) null)", "", ""],
                // type-wrapped arguments
                [fromString(), "command.execute((String[]) ['FOOBAR=foobar'], null)", "", "foobar"],
                [fromString(), "command.execute((List) ['FOOBAR=foobar'], null)", "", "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    type JSON struct {
    	Object interface{}
    }
    
    // DeepCopy creates a deep copy of the wrapped JSON value.
    func (j JSON) DeepCopy() JSON {
    	return JSON{runtime.DeepCopyJSONValue(j.Object)}
    }
    
    // DeepCopyInto creates a deep copy of the wrapped JSON value and stores it in into.
    func (j JSON) DeepCopyInto(into *JSON) {
    	into.Object = runtime.DeepCopyJSONValue(j.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    }
    
    func ZeroArgumentFunctionBinding(binding func() ref.Val) decls.OverloadOpt {
    	return func(o *decls.OverloadDecl) (*decls.OverloadDecl, error) {
    		wrapped, err := decls.FunctionBinding(func(values ...ref.Val) ref.Val { return binding() })(o)
    		if err != nil {
    			return nil, err
    		}
    		if len(wrapped.ArgTypes()) != 0 {
    			return nil, fmt.Errorf("function binding must have 0 arguments")
    		}
    		return o, nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/volume/secret/secret.go

    func (b *secretVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.V(3).Infof("Setting up volume %v for pod %v at %v", b.volName, b.pod.UID, dir)
    
    	// Wrap EmptyDir, let it do the setup.
    	wrapped, err := b.plugin.host.NewWrapperMounter(b.volName, wrappedVolumeSpec(), &b.pod, *b.opts)
    	if err != nil {
    		return err
    	}
    
    	optional := b.source.Optional != nil && *b.source.Optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top