Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 303 for deduplicated (0.17 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/deduplicate_if_results.mlir

    // RUN: tf-tfrt-opt -split-input-file -tfrt-deduplicate-if-result %s | FileCheck %s -dump-input=fail
    
    func.func private @then(%x: tensor<i32>, %y: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      func.return %x, %x : tensor<i32>, tensor<i32>
    }
    
    func.func private @else(%x: tensor<i32>, %y: tensor<i32>) -> (tensor<i32>, tensor<i32>) {
      func.return %y, %y : tensor<i32>, tensor<i32>
    }
    
    // CHECK-LABEL: then/tfrt_dedup_results
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 01 23:50:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. test/abi/store_reg_args.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // When the function Store an Arg and also use it in another place,
    // be sure not to generate duplicated OpArgXXXReg values, which confuses
    // the register allocator.
    
    package main
    
    //go:noinline
    //go:registerparams
    func F(x, y float32) {
    	if x < 0 {
    		panic("FAIL")
    	}
    	g = [4]float32{x, y, x, y}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 22:10:19 UTC 2021
    - 587 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    // ops (like the `dim` argument for `TF::ExpandDimsOp`) determine the shape of
    // the resulting tensor. If these operands are constants, they are duplicated
    // and replace the shape-determining operands. Each duplicated constant will
    // only be used as the shape-determining operand; it will not replace other
    // usages of the original constant. If the operands are not constants (i.e.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/seh.go

    	// as it only contains frame pointer operations,
    	// which are very similar across functions.
    	// These are referenced by .pdata entries using
    	// an RVA, so it is possible, and binary-size wise,
    	// to deduplicate .xdata entries.
    	uwcache := make(map[string]int64) // aux symbol name --> .xdata offset
    	for _, s := range ctxt.Textp {
    		if fi := ldr.FuncInfo(s); !fi.Valid() {
    			continue
    		}
    		uw := ldr.SEHUnwindSym(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/html/template/examplefiles_test.go

    		if err != nil {
    			log.Fatal(err)
    		}
    		defer f.Close()
    		_, err = io.WriteString(f, file.contents)
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    	return dir
    }
    
    // The following example is duplicated in text/template; keep them in sync.
    
    // Here we demonstrate loading a set of templates from a directory.
    func ExampleTemplate_glob() {
    	// Here we create a temporary directory and populate it with our sample
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// Duplicated nameservers will be removed.
    	// +optional
    	// +listType=atomic
    	Nameservers []string `json:"nameservers,omitempty" protobuf:"bytes,1,rep,name=nameservers"`
    	// A list of DNS search domains for host-name lookup.
    	// This will be appended to the base search paths generated from DNSPolicy.
    	// Duplicated search paths will be removed.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/AggregatingProblemConsumerTest.groovy

            for (int i = 0; i < 3; i++) {
                emitter.emit(createMockProblem("foo$i"))
            }
    
            then:
            3 * eventConsumer.progress(_)
        }
    
        def "emit summary if there are deduplicate events"() {
            given:
            def eventConsumer = Mock(ProgressEventConsumer)
            def emitter = new AggregatingProblemConsumer(eventConsumer, { new OperationIdentifier(1) })
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/openapi/maplist_test.go

    			},
    			query: map[string]interface{}{
    				"k":  "a",
    				"v1": "A",
    			},
    			expected: map[string]interface{}{
    				"k":  "a",
    				"v1": "a",
    			},
    		},
    		{
    			name: "keep first entry when duplicated keys are encountered",
    			sts: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type: []string{"array"},
    				},
    				VendorExtensible: spec.VendorExtensible{Extensions: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 18:08:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/maplist_test.go

    			},
    			query: map[string]interface{}{
    				"k":  "a",
    				"v1": "A",
    			},
    			expected: map[string]interface{}{
    				"k":  "a",
    				"v1": "a",
    			},
    		},
    		{
    			name: "keep first entry when duplicated keys are encountered",
    			sts: schema.Structural{
    				Generic: schema.Generic{
    					Type: "array",
    				},
    				Extensions: schema.Extensions{
    					XListType:    &listTypeMap,
    					XListMapKeys: []string{"k"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 18:08:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-config-attributes/wo-plugin-mgmt/pom.xml

      <artifactId>test1</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-4053</name>
      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        no plugin management is used.
      </description>
    
      <build>
        <!-- NOTE: This test does not use plugin management for the IT plugin -->
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top