Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for logic (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

      enabled by default.
      You can read https://kep.k8s.io/4420 for more details. ([#124673](https://github.com/kubernetes/kubernetes/pull/124673), [@jpbetz](https://github.com/jpbetz)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    // Use this annotation at the end of a struct/class definition to
    // prevent the compiler from optimizing away instances that are never
    // used.  This is useful when all interesting logic happens inside the
    // c'tor and / or d'tor.  Example:
    //
    //   struct Foo {
    //     Foo() { ... }
    //   } GTEST_ATTRIBUTE_UNUSED_;
    //
    // Also use it after a variable or parameter declaration to tell the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif
    
    // Use this annotation at the end of a struct/class definition to
    // prevent the compiler from optimizing away instances that are never
    // used.  This is useful when all interesting logic happens inside the
    // c'tor and / or d'tor.  Example:
    //
    //   struct Foo {
    //     Foo() { ... }
    //   } GTEST_ATTRIBUTE_UNUSED_;
    //
    // Also use it after a variable or parameter declaration to tell the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	if v, ok := patch[directiveMarker]; ok {
    		return handleDirectiveInMergeMap(v, patch)
    	}
    
    	// nil is an accepted value for original to simplify logic in other places.
    	// If original is nil, replace it with an empty map and then apply the patch.
    	if original == nil {
    		original = map[string]interface{}{}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	portNames, ips []string, refs []*corev1.ObjectReference, labels map[string]string,
    ) {
    	if labels == nil {
    		labels = make(map[string]string)
    	}
    	// Add the reference to the service. Used by EndpointSlice logic only.
    	labels[discovery.LabelServiceName] = name
    
    	if refs == nil {
    		refs = make([]*corev1.ObjectReference, len(ips))
    	}
    	var portNum int32 = 1001
    	eas := make([]corev1.EndpointAddress, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller_test.go

    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP:  v1.ClusterIPNone,
    					IPFamilies: []v1.IPFamily{v1.IPv6Protocol}, // <- set by a api-server defaulting logic
    				},
    			},
    			expectedEndpointFamily: ipv6,
    		},
    		{
    			name:       "v6 legacy headless service, in a dual stack cluster  (connected to a old api-server)",
    			ipFamilies: ipv4ipv6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		panic(err)
    	}
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(cert)
    
    	config := testConfig.Clone()
    	// Use GetClientCertificate to bypass the client certificate selection logic.
    	config.GetClientCertificate = func(*CertificateRequestInfo) (*Certificate, error) {
    		return &Certificate{
    			Certificate: [][]byte{testRSAPSSCertificate},
    			PrivateKey:  testRSAPrivateKey,
    		}, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. src/testing/testing.go

    			fmt.Fprintln(os.Stderr, "testing: warning: no tests to run")
    			if testingTesting && *match != "^$" {
    				// If this happens during testing of package testing it could be that
    				// package testing's own logic for when to run a test is broken,
    				// in which case every test will run nothing and succeed,
    				// with no obvious way to detect this problem (since no tests are running).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // the first test in the current test case.
      static bool HasSameFixtureClass();
    
      // Runs the test after the test fixture has been set up.
      //
      // A sub-class must implement this to define the test logic.
      //
      // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
      // Instead, use the TEST or TEST_F macro.
      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    				// TODO(rFindley) The check for token.RBRACE below is a targeted fix
    				//                to error recovery sufficient to make the x/tools tests to
    				//                pass with the new parsing logic introduced for type
    				//                parameters. Remove this once error recovery has been
    				//                more generally reconsidered.
    				if p.tok != token.RBRACE {
    					p.next() // make progress
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top