Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 115 for BAR (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		fakeFilter,
    		func(_ *http.Request, _, _ string) fcrequest.WorkEstimate { return workExpected },
    		time.Minute/4,
    	)
    
    	w := httptest.NewRecorder()
    	req, err := http.NewRequest(http.MethodGet, "/bar", nil)
    	if err != nil {
    		t.Fatalf("Failed to create new http request - %v", err)
    	}
    	req = req.WithContext(apirequest.WithRequestInfo(req.Context(), reqDigestExpected.RequestInfo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // passed in and keeps them to generate tests in RUN_ALL_TESTS().
    //
    // Examples:
    //
    // This instantiates tests from test case StringTest
    // each with C-string values of "foo", "bar", and "baz":
    //
    // const char* strings[] = {"foo", "bar", "baz"};
    // INSTANTIATE_TEST_CASE_P(StringSequence, SrtingTest, ValuesIn(strings));
    //
    // This instantiates tests from test case StlStringTest
    // each with STL strings with values "a" and "b":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    		{`package b0; var _ = len("")`, `len`, `builtin`},
    		{`package b1; var _ = (len)("")`, `(len)`, `builtin`},
    
    		// constants
    		{`package c0; var _ = 42`, `42`, `const`},
    		{`package c1; var _ = "foo" + "bar"`, `"foo" + "bar"`, `const`},
    		{`package c2; const (i = 1i; _ = i)`, `i`, `const`},
    
    		// values
    		{`package v0; var (a, b int; _ = a + b)`, `a + b`, `value`},
    		{`package v1; var _ = &[]int{1}`, `[]int{…}`, `value`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        %0 = tf_executor.graph {
          %outputs, %control = tf_executor.island wraps "tf.PartitionedCall"(%arg0) {f = @_tpu_v1_compat_outlined::@bar} : (tensor<f32>) -> tensor<f32>
          tf_executor.fetch %outputs : tensor<f32>
        }
        return %0 : tensor<f32>
      }
      module @_tpu_v1_compat_outlined {
        func nested @bar(%arg0: tensor<f32>) -> tensor<f32> {
          %0 = "tf.opA"(%arg0) : (tensor<f32>) -> tensor<f32>
          return %0 : tensor<f32>
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

            # Disable the built-in transformations. In the future we may want a template-level API
            prometheus.istio.io/merge-metrics: "false"
            sidecar.istio.io/rewriteAppHTTPProbers: "false"
            foo: bar
        spec:
          containers:
          {{- range $index, $container := .Spec.Containers }}
          - name: {{ $container.Name }}
            env:
            - name: SOME_ENV
              value: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    		{`package b0; var _ = len("")`, `len`, `builtin`},
    		{`package b1; var _ = (len)("")`, `(len)`, `builtin`},
    
    		// constants
    		{`package c0; var _ = 42`, `42`, `const`},
    		{`package c1; var _ = "foo" + "bar"`, `"foo" + "bar"`, `const`},
    		{`package c2; const (i = 1i; _ = i)`, `i`, `const`},
    
    		// values
    		{`package v0; var (a, b int; _ = a + b)`, `a + b`, `value`},
    		{`package v1; var _ = &[]int{1}`, `[]int{…}`, `value`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/binder_test.go

    //     controllerTest.testCall *once*.
    //  3. Compare resulting volumes and claims with expected volumes and claims.
    func TestSync(t *testing.T) {
    	labels := map[string]string{
    		"foo": "true",
    		"bar": "false",
    	}
    
    	tests := []controllerTest{
    		// [Unit test set 1] User did not care which PV they get.
    		// Test the matching with no claim.Spec.VolumeName and with various
    		// volumes.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 65.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.play()
    
        // Play it back.
        val connection = connect(peer)
        val stream = connection.newStream(headerEntries("a", "android"), true)
        stream.enqueueTrailers(headersOf("foo", "bar"))
        val sink = stream.getSink().buffer()
        sink.writeUtf8("abcdefghi")
        sink.close()
    
        // Verify the peer received what was expected.
        val headers1 = peer.takeFrame()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    spec:
      mtls:
        mode: %s
    `, m)
    }
    
    func TestInbound(t *testing.T) {
    	svc := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se
    spec:
      hosts:
      - foo.bar
      endpoints:
      - address: 1.1.1.1
      location: MESH_INTERNAL
      resolution: STATIC
      ports:
      - name: tcp
        number: 70
        protocol: TCP
      - name: http
        number: 80
        protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    //
    // For example, the declaration:
    //
    //		const (
    //			foobar int = 42 // comment
    //			x          = 7  // comment
    //			foo
    //	             bar = 991
    //		)
    //
    // leads to the type/values matrix below. A run of value columns (V) can
    // be moved into the type column if there is no type for any of the values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top