Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 300 for foo_vr (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/colocate_tpu_copy_with_dynamic_shape.mlir

         // CHECK: TPUCopyWithDynamicShape{{.*}}device = "foobar"
         %4, %5 = "tf.TPUCopyWithDynamicShape"(%0, %1, %2, %3) {operandSegmentSizes = array<i32: 2, 2>} : (tensor<2048xi32>, tensor<2048xi32>, tensor<i32>, tensor<i32>) -> (tensor<2048xi32>, tensor<2048xi32>)
        "tf.TPUExecute"(%4, %arg0) {device = "foobar"} : (tensor<2048xi32>, tensor<!tf_type.string>) -> ()
        return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 00:30:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/debugger/comparer_test.go

    			actual:    []string{"foo", "bar"},
    			cached:    []string{"bar", "foo", "foobar"},
    			missing:   []string{},
    			redundant: []string{"foobar"},
    		},
    		{
    			name:      "missing cached value",
    			actual:    []string{"foo", "bar", "foobar"},
    			cached:    []string{"bar", "foo"},
    			missing:   []string{"foobar"},
    			redundant: []string{},
    		},
    		{
    			name:      "proper cache set",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue5056.go

    type Foo int16
    
    func (f Foo) Esc() *int{
    	x := int(f)
    	return &x
    }
    
    type iface interface {
    	Esc() *int
    }
    
    var bar, foobar *int
    
    func main() {
    	var quux iface
    	var x Foo
    	
    	quux = x
    	bar = quux.Esc()
    	foobar = quux.Esc()
    	if bar == foobar {
    		panic("bar == foobar")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 517 bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_getters_test.go

    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodPluginDir("abc123", "foobar")
    	exp = filepath.Join(root, "pods/abc123/plugins/foobar")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getVolumeDevicePluginsDir()
    	exp = filepath.Join(root, "plugins")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getVolumeDevicePluginDir("foobar")
    	exp = filepath.Join(root, "plugins", "foobar", "volumeDevices")
    	assert.Equal(t, exp, got)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

                    }
    
                    @TaskAction
                    void useIt() {
                        assert foo.get() == "foobar"
                    }
                }
                tasks.register("mytask", MyTask) {
                    conventionMapping.map("foo", { providerFactory.provider { "foobar" } })
                    other.convention("other")
                }
            """
    
            expect:
            runAndFail 'mytask'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. pkg/registry/rbac/validation/rule_test.go

    				{Kind: rbacv1.UserKind, Name: "foobar"},
    			},
    			user:      &user.DefaultInfo{Name: "foobar"},
    			appliesTo: true,
    			index:     0,
    			testCase:  "single subject that matches username",
    		},
    		{
    			subjects: []rbacv1.Subject{
    				{Kind: rbacv1.UserKind, Name: "barfoo"},
    				{Kind: rbacv1.UserKind, Name: "foobar"},
    			},
    			user:      &user.DefaultInfo{Name: "foobar"},
    			appliesTo: true,
    			index:     1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/ajax/js/test.js

      $('#home').click(function(){ openPage("home.html") } );
    }
    
    function openPage(page){
      $('#content').load(page);
      location.hash = page;
    }
    
    function addFooter(msg){
      $('#footer').html($('#footer').html() + "<p>FOOTER: " + msg + "</p>");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 410 bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/PublicationWarningsCollector.java

        private final String footer;
        private final String disableMethod;
        private final Map<String, VariantWarningCollector> variantToWarnings;
    
        public PublicationWarningsCollector(
            Map<String, VariantWarningCollector> variantToWarnings,
            Logger logger,
            String unsupportedFeature,
            String incompatibleFeature,
            String footer,
            String disableMethod
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/trim-functions-tf.mlir

    // RUN: tf-opt -tfl-trim-funcs-tf="trim-funcs-allowlist=bar,foobar" %s | FileCheck %s
    
    func.func @foo(%arg0: tensor<1x4xf32>, %arg1: tensor<1x4xf32>) -> tensor<1x4xf32> {
      func.return %arg0 : tensor<1x4xf32>
    }
    
    func.func @bar(%arg0: tensor<2x4xf32>, %arg1: tensor<2x4xf32>) -> tensor<2x4xf32> {
      func.return %arg0 : tensor<2x4xf32>
    }
    
    func.func @foobar(%arg0: tensor<1x4xf32>, %arg1: tensor<1x4xf32>) -> tensor<1x4xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 565 bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

        }
    
        /**
         * Returns the HTML text to appear in the footer for each page.
         */
        @Nullable @Optional @Input
        public String getFooter() {
            return footer;
        }
    
        /**
         * Sets the HTML text to appear in the footer for each page.
         */
        public void setFooter(@Nullable String footer) {
            this.footer = footer;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top