Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 115 for BAR (0.06 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent_rc_syncs=10",
    	"--concurrent-validating-admission-policy-status-syncs=9",
    	"--configure-cloud-routes=false",
    	"--contention-profiling=true",
    	"--controller-start-interval=2m",
    	"--controllers=foo,bar",
    	"--disable-attach-detach-reconcile-sync=true",
    	"--enable-dynamic-provisioning=false",
    	"--enable-garbage-collector=false",
    	"--enable-hostpath-provisioner=true",
    	"--cluster-signing-duration=10h",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    }
    
    func TestEndpointsDeduping(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	namespace := "namespace"
    	labels := map[string]string{
    		"app": "bar",
    	}
    	ei := s.Env().EndpointIndex
    	makeService(t, s.KubeClient().Kube(), &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "service",
    			Namespace: namespace,
    		},
    		Spec: v1.ServiceSpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   template <typename T> class Foo {
    //    public:
    //     void Bar() { testing::StaticAssertTypeEq<int, T>(); }
    //   };
    //
    // the code:
    //
    //   void Test1() { Foo<bool> foo; }
    //
    // will NOT generate a compiler error, as Foo<bool>::Bar() is never
    // actually instantiated.  Instead, you need:
    //
    //   void Test2() { Foo<bool> foo; foo.Bar(); }
    //
    // to cause a compiler error.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                noMetadataVerification()
                keyServer(keyServerFixture.uri)
                verifySignatures()
                addTrustedKey("org:foo:1.0", validPublicKeyHexString)
                trust("org", "bar", "1.0")
            }
    
            given:
            terseConsoleOutput(terse)
            javaLibrary()
            uncheckedModule("org", "foo", "1.0") {
                withSignature {
                    signAsciiArmored(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   template <typename T> class Foo {
    //    public:
    //     void Bar() { testing::StaticAssertTypeEq<int, T>(); }
    //   };
    //
    // the code:
    //
    //   void Test1() { Foo<bool> foo; }
    //
    // will NOT generate a compiler error, as Foo<bool>::Bar() is never
    // actually instantiated.  Instead, you need:
    //
    //   void Test2() { Foo<bool> foo; foo.Bar(); }
    //
    // to cause a compiler error.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                }
            }
    
            if (this is FirImplicitInvokeCall) {
    
                // If we have a PSI expression like `Foo.Bar.Baz()` and try to resolve `Bar` part,
                // and the only FIR that we have for that PSI is an implicit invoke call, that means that
                // `Foo.Bar` is definitely not a property access - otherwise it would have had its own FIR.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. pkg/apis/certificates/validation/validation_test.go

    			Spec: capi.ClusterTrustBundleSpec{
    				SignerName:  "k8s.io/bar",
    				TrustBundle: goodCert1Block,
    			},
    		},
    		wantErrors: field.ErrorList{
    			field.Invalid(field.NewPath("metadata", "name"), "k8s.io:foo:bar", "ClusterTrustBundle for signerName k8s.io/bar must be named with prefix k8s.io:bar:"),
    			field.Invalid(field.NewPath("spec", "signerName"), "k8s.io/bar", "field is immutable"),
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    		}
    		w.Header().Set("Trailers", "not a special header field name")
    		w.Header().Set("Trailer", "X-Trailer")
    		w.Header().Set("X-Foo", "bar")
    		w.Header().Set("Upgrade", "foo")
    		w.Header().Set(fakeHopHeader, "foo")
    		w.Header().Add("X-Multi-Value", "foo")
    		w.Header().Add("X-Multi-Value", "bar")
    		http.SetCookie(w, &http.Cookie{Name: "flavor", Value: "chocolateChip"})
    		w.WriteHeader(backendStatus)
    		w.Write([]byte(backendResponse))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        class Bar<T> {}
        class SubBar<T> extends Bar<T> {
          @SuppressWarnings("unused")
          Bar<T> delegate;
    
          TypeToken<SubBar<T>> fieldTypeAsSubBar() {
            return new TypeToken<SubBar<T>>() {};
          }
        }
    
        Field delegateField = SubBar.class.getDeclaredField("delegate");
        // barType is Bar<T>, a ParameterizedType with no generic arguments specified
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	tg.run("run", tg.path("foo.go"))
    
    	// test for ldflags
    	tg.tempFile("bar.pc", `
    Name: bar
    Description: The bar library
    Version: 1.0.0
    Libs: -Wl,-rpath=/path\ with\ spaces/bin
    `)
    	tg.tempFile("bar.go", `package main
    /*
    #cgo pkg-config: bar
    */
    import "C"
    func main() {}
    `)
    	tg.run("run", tg.path("bar.go"))
    }
    
    func TestListTemplateContextFunction(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top