Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 653 for copied32 (0.24 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

        private AnsiConsoleUtil() {
        }
    
        /**
         * @see <a href="https://github.com/fusesource/jansi/blob/eeda18cb05122abe48b284dca969e2c060a0c009/jansi/src/main/java/org/fusesource/jansi/AnsiConsole.java#L48-L54">Method copied over from AnsiConsole.wrapOutputStream</a>
         */
        static OutputStream wrapOutputStream(final OutputStream stream) {
            try {
                return wrapOutputStream(stream, STDOUT_FILENO);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/README

    The *.png and README.original files in this directory are copied from
    libpng.org, specifically contrib/pngsuite/* in libpng 1.6.26.
    
    README.original gives the following license for those files:
    
    	Permission to use, copy, and distribute these images for any purpose
    	and without fee is hereby granted.
    
    The files basn0g01-30.png, basn0g02-29.png and basn0g04-31.png are in fact not
    part of pngsuite but were created from files in pngsuite. Their non-power-of-2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 02:10:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.h

    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace quant {
    
    // Copied from tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc.
    // By removing identity ops, constant operands with dynamic shapes have static
    // shape information which is necessary for correct pattern matching in this
    // pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. releasenotes/notes/manifest-base-cleanup.yaml

    upgradeNotes:
      - title: "`base` Helm Chart removals"
        content: |
          A number of configurations previously present in the the `base` Helm chart were *copied* to the `istiod` chart in a previous releases.
    
          In this release, the duplicated configurations are fully removed from the `base` chart.
    
          Below shows a mapping of old configuration to new configuration:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    }
    
    // WithConversions returns a Converter that is a copy of c but with the additional
    // fns merged on top.
    func (c *Converter) WithConversions(fns ConversionFuncs) *Converter {
    	copied := *c
    	copied.conversionFuncs = c.conversionFuncs.Merge(fns)
    	return &copied
    }
    
    // DefaultMeta returns meta for a given type.
    func (c *Converter) DefaultMeta(t reflect.Type) *Meta {
    	return &Meta{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. tools/build-kind-image.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script builds a multi-arch kind node image
    # Largely copied from https://github.com/kubernetes-sigs/kind/blob/2a1e9df91fd22d6ae5b91648b6c1a606ab4cdf30/hack/release/build/push-node.sh
    # Example usage: `tools/build-kind-image.sh ~/go/src/k8s.io/kubernetes gcr.io/istio-testing/kind-node:v1.23.4`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * @return this
         */
        ContentFilterable filter(Transformer<@org.jetbrains.annotations.Nullable String, String> transformer);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
         * Groovy's {@link groovy.text.SimpleTemplateEngine}. This means you can use simple property references, such as
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  8. docs/batch-jobs/README.md

    ## Replication Job
    To perform replication via batch jobs, you create a job. The job consists of a job description YAML that describes
    
    - Source location from where the objects must be copied from
    - Target location from where the objects must be copied to
    - Fine grained filtering is available to pick relevant objects from source to copy from
    
    MinIO batch jobs framework also provides
    
    - Retrying a failed job automatically driven by user input
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. pkg/dns/client/dns.go

    	// So lookup the cname table first
    	for _, cn := range table.cname[hostname] {
    		// this was a cname match
    		copied := dns.Copy(cn).(*dns.CNAME)
    		copied.Header().Name = question
    		cnAnswers = append(cnAnswers, copied)
    		hostname = copied.Target
    	}
    
    	switch qtype {
    	case dns.TypeA:
    		ipAnswers = table.name4[hostname]
    	case dns.TypeAAAA:
    		ipAnswers = table.name6[hostname]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/copy.go

    package ir
    
    import (
    	"cmd/internal/src"
    )
    
    // Copy returns a shallow copy of n.
    func Copy(n Node) Node {
    	return n.copy()
    }
    
    // DeepCopy returns a “deep” copy of n, with its entire structure copied
    // (except for shared nodes like ONAME, ONONAME, OLITERAL, and OTYPE).
    // If pos.IsKnown(), it sets the source position of newly allocated Nodes to pos.
    func DeepCopy(pos src.XPos, n Node) Node {
    	var edit func(Node) Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:57:57 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top