Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for foo_3 (0.1 sec)

  1. pkg/util/taints/taints_test.go

    				{
    					Key:    "foo_2",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "foo_3",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    			},
    			expectedResult: "foo_2,foo_3",
    		},
    	}
    
    	for _, c := range cases {
    		result := CheckIfTaintsAlreadyExists(oldTaints, c.taintsToCheck)
    		if result != c.expectedResult {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope_test.cc

      EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo");
      EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo_1");
      EXPECT_EQ(root.GetUniqueNameForOp("foo_1"), "foo_1_1");
      EXPECT_EQ(root.GetUniqueNameForOp("foo_2"), "foo_2");
      EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo_3");
      EXPECT_EQ(root.GetUniqueNameForOp("foo_2"), "foo_2_1");
    }
    
    TEST(ScopeTest, HierarchicalNames) {
      Scope root = Scope::NewRootScope();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

        }
      }
      function {
        signature {
          name: "foo11"
        }
      }
      function {
        signature {
          name: "foo12"
        }
      }
      function {
        signature {
          name: "foo13"
        }
      }
      function {
        signature {
          name: "foo14"
        }
      }
      function {
        signature {
          name: "foo15"
        }
      }
      function {
        signature {
          name: "foo16"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. pkg/test/datasets/Readme.md

    .../dataset/**/<testname>_<stageNo>_expected.json
    
    e.g.
    # First stage files. Meshconfig carries over to the next stage
    .../dataset/**/foo_0.yaml
    .../dataset/**/foo_0_meshconfig.yaml
    .../dataset/**/foo_0_expected.json
    # Second stage files.
    .../dataset/**/foo_1.yaml
    .../dataset/**/foo_1_expected.json
    
    ```
    
    The expected file structure is as follows:
    
    ```json
    {
      "collection": [
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. test/escape2.go

    	f.xx = &x
    }
    
    func foo43(f *Foo, x int) { // ERROR "f does not escape$" "moved to heap: x$"
    	f.xx = &x
    }
    
    func foo44(yy *int) { // ERROR "leaking param: yy$"
    	F.xx = yy
    }
    
    func (f *Foo) foo45() { // ERROR "f does not escape$"
    	F.x = f.x
    }
    
    // See foo13 above for explanation of why f leaks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. test/escape2n.go

    	f.xx = &x
    }
    
    func foo43(f *Foo, x int) { // ERROR "f does not escape$" "moved to heap: x$"
    	f.xx = &x
    }
    
    func foo44(yy *int) { // ERROR "leaking param: yy$"
    	F.xx = yy
    }
    
    func (f *Foo) foo45() { // ERROR "f does not escape$"
    	F.x = f.x
    }
    
    // See foo13 above for explanation of why f leaks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. pkg/util/labels/labels_test.go

    import (
    	"reflect"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func TestCloneAndAddLabel(t *testing.T) {
    	labels := map[string]string{
    		"foo1": "bar1",
    		"foo2": "bar2",
    		"foo3": "bar3",
    	}
    
    	cases := []struct {
    		labels     map[string]string
    		labelKey   string
    		labelValue string
    		want       map[string]string
    	}{
    		{
    			labels: labels,
    			want:   labels,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 17:34:12 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue5755.dir/a.go

    package a
    
    type I interface {
    	F()
    }
    
    type foo1 []byte
    type foo2 []rune
    type foo3 []uint8
    type foo4 []int32
    type foo5 string
    type foo6 string
    type foo7 string
    type foo8 string
    type foo9 string
    
    func (f foo1) F() { return }
    func (f foo2) F() { return }
    func (f foo3) F() { return }
    func (f foo4) F() { return }
    func (f foo5) F() { return }
    func (f foo6) F() { return }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 28 21:29:13 UTC 2013
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/labels_test.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"reflect"
    	"testing"
    )
    
    func TestCloneSelectorAndAddLabel(t *testing.T) {
    	labels := map[string]string{
    		"foo1": "bar1",
    		"foo2": "bar2",
    		"foo3": "bar3",
    	}
    	matchExpressions := []LabelSelectorRequirement{
    		{Key: "foo", Operator: LabelSelectorOpIn, Values: []string{"foo"}},
    	}
    
    	cases := []struct {
    		labels     map[string]string
    		labelKey   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 11:09:05 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget2.kt

    fun Greeting(): String {
        return "Hi $foo!"
    }
    
    // FILE: p3/foo.kt
    package p3
    
    import org.jetbrains.kotlin.fir.plugin.MyComposable
    
    private var foo_ = 0
    
    fun setFoo(newFoo: Int) {
        foo_ = newFoo
    }
    
    val foo: Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 486 bytes
    - Viewed (0)
Back to top