Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,528 for BAR (0.04 sec)

  1. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/groovy/buildSrc/src/test/groovy/com/example/JavaConventionPluginTest.groovy

                    @Deprecated
                    public void deprecatedMethod() {}
                }
            """
    
            new File(testProjectDir, 'src/main/java/com/example/Bar.java') << """
                package com.example;
    
                public class Bar {
                    public void bar() {
                        new Foo().deprecatedMethod();
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

        targetPort: 8090
      selector:
        app: foo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-bar-rev-a
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: foo
          version: bar
      template:
        metadata:
          labels:
            app: foo
            version: bar
            test.istio.io/class: standard
            istio.io/rev: rev-a
          annotations:
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/tableconvertor/tableconvertor_test.go

    					{Name: "multi", Type: "string"},
    				},
    				additionalColumns: []columnPrinter{
    					newJSONPath("valueOnly", "{.spec.foo[0].bar[0]}"),
    					newJSONPath("single1", "{.spec.foo[0].bar}"),
    					newJSONPath("single2", "{.spec.foo[1].bar}"),
    					newJSONPath("multi", "{.spec.foo[*].bar}"),
    				},
    			},
    			args: args{
    				obj: &unstructured.Unstructured{
    					Object: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. src/mime/quotedprintable/reader_test.go

    		in, want string
    		err      any
    	}{
    		{in: "", want: ""},
    		{in: "foo bar", want: "foo bar"},
    		{in: "foo bar=3D", want: "foo bar="},
    		{in: "foo bar=3d", want: "foo bar="}, // lax.
    		{in: "foo bar=\n", want: "foo bar"},
    		{in: "foo bar\n", want: "foo bar\n"}, // somewhat lax.
    		{in: "foo bar=0", want: "foo bar=0"}, // lax
    		{in: "foo bar=0D=0A", want: "foo bar\r\n"},
    		{in: " A B        \r\n C ", want: " A B\r\n C"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-func-attr.pbtxt

              name: "foo"
            }
            func {
              name: "bar"
            }
          }
        }
      }
      attr {
        key: "output_shapes"
        value {
          list {
          }
        }
      }
      experimental_debug_info {
      }
    }
    library {
      function {
        signature {
          name: "bar"
          output_arg {
            name: "bar"
            type: DT_FLOAT
          }
        }
        node_def {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/JavaConventionPluginTest.kt

                    @Deprecated
                    public void deprecatedMethod() {}
                }
            """)
    
            testProjectDir.newFile("src/main/java/com/myorg/Bar.java").writeText("""
                package com.myorg;
    
                public class Bar {
                    public void bar() {
                        new Foo().deprecatedMethod();
                    }
                }
            """)
    
            val result = runTask("build")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/test/kotlin/com/example/JavaConventionPluginTest.kt

                    public void deprecatedMethod() {}
                }
            """)
    
            testProjectDir.newFile("src/main/java/com/example/Bar.java").writeText("""
                package com.example;
    
                public class Bar {
                    public void bar() {
                        new Foo().deprecatedMethod();
                    }
                }
            """)
    
            val result = runTask("build")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/metrics_test.cc

      SavedModelWriteFingerprint().Set("bar");
      EXPECT_EQ(SavedModelWriteFingerprint().value(), "bar");
    }
    
    TEST(MetricsTest, TestWritePath) {
      EXPECT_EQ(SavedModelWritePath().value(), "");
      SavedModelWritePath().Set("foo");
      EXPECT_EQ(SavedModelWritePath().value(), "foo");
      SavedModelWritePath().Set("bar");
      EXPECT_EQ(SavedModelWritePath().value(), "bar");
    }
    
    TEST(MetricsTest, TestWritePathAndSingleprint) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/html/template/url_test.go

    	tests := []struct {
    		url, want string
    	}{
    		{"", ""},
    		{
    			"http://example.com:80/foo/bar?q=foo%20&bar=x+y#frag",
    			"http://example.com:80/foo/bar?q=foo%20&bar=x+y#frag",
    		},
    		{" ", "%20"},
    		{"%7c", "%7c"},
    		{"%7C", "%7C"},
    		{"%2", "%252"},
    		{"%", "%25"},
    		{"%z", "%25z"},
    		{"/foo|bar/%5c\u1234", "/foo%7cbar/%5c%e1%88%b4"},
    	}
    	for _, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. test/fixedbugs/issue24651a.go

    	return x * (x + 1) * (x + 2)
    }
    
    func Bar(x int) int { // ERROR "can inline Bar with cost .* as: func\(int\) int { return x \* \(x \+ 1\) \* \(x \+ 2\) }$"
    	return x * (x + 1) * (x + 2)
    }
    
    var x = 5
    
    //go:noinline Provide a clean, constant reason for not inlining main
    func main() { // ERROR "cannot inline main: marked go:noinline$"
    	println("Foo(", x, ")=", Foo(x))
    	println("Bar(", x, ")=", Bar(x)) // ERROR "inlining call to Bar"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 881 bytes
    - Viewed (0)
Back to top