Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for foo_1 (0.04 sec)

  1. pkg/util/taints/taints_test.go

    				{
    					Key:    "foo_3",
    					Value:  "bar_3",
    					Effect: v1.TaintEffectNoExecute,
    				},
    				{
    					Key:    "foo_2",
    					Value:  "bar_2",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    			},
    			expectedTaintsToAdd: []*v1.Taint{
    				{
    					Key:    "foo_1",
    					Value:  "bar_1",
    					Effect: v1.TaintEffectNoExecute,
    				},
    				{
    					Key:    "foo_2",
    					Value:  "different-value",
    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. 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)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

    # This test is tailored to reproduce b/141617294. In particular, the function
    # library contains "foo1", "foo2", ..., "foo20", from which "foo1" and "foo11"
    # were mapped to the same name "foo110" in the bug.
    node {
      name: "unnamed"
      op: "foo1"
    }
    node {
      name: "unnamed1"
      op: "foo11"
    }
    library {
      function {
        signature {
          name: "foo1"
        }
      }
      function {
        signature {
          name: "foo2"
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. test/escape2n.go

    	xx = yy
    	return xx
    }
    
    func foo10(xx, yy *int) { // ERROR "xx does not escape$" "yy does not escape$"
    	*xx = *yy
    }
    
    func foo11() int {
    	x, y := 0, 42
    	xx := &x
    	yy := &y
    	*xx = *yy
    	return x
    }
    
    var xxx **int
    
    func foo12(yyy **int) { // ERROR "leaking param: yyy$"
    	xxx = yyy
    }
    
    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/escape2.go

    	xx = yy
    	return xx
    }
    
    func foo10(xx, yy *int) { // ERROR "xx does not escape$" "yy does not escape$"
    	*xx = *yy
    }
    
    func foo11() int {
    	x, y := 0, 42
    	xx := &x
    	yy := &y
    	*xx = *yy
    	return x
    }
    
    var xxx **int
    
    func foo12(yyy **int) { // ERROR "leaking param: yyy$"
    	xxx = yyy
    }
    
    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. src/strings/replace_test.go

    	// and 1- or 2- byte extensions from the common prefix.
    	foo1 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo3", "C",
    	)
    	foo2 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo31", "C",
    		"foo32", "D",
    	)
    	foo3 := NewReplacer(
    		"foo11", "A",
    		"foo12", "B",
    		"foo31", "C",
    		"foo32", "D",
    	)
    	foo4 := NewReplacer(
    		"foo12", "B",
    		"foo32", "D",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    		// remove a driver
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io.kubernetes.storage.csi.driver-1",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// add a driver
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1"},
    		Spec: storage.CSINodeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                }
                configurations {
                    conf
                }
            """
            def foo11 = mavenRepo.module("org", "foo", '1.0').publish()
            mavenRepo.module("org", "foo", '1.1').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(foo11).publish()
        }
    
        void "force resolution strategy is applied to dependency constraints"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K 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