Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 249 for somme (0.05 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // generic name and clashes with some other libraries.
    #if !GTEST_DONT_DEFINE_FAIL
    # define FAIL() GTEST_FAIL()
    #endif
    
    // Generates a success with a generic message.
    #define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded")
    
    // Define this macro to 1 to omit the definition of SUCCEED(), which
    // is a generic name and clashes with some other libraries.
    #if !GTEST_DONT_DEFINE_SUCCEED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		c := httpStaticOverlayUpdated.DeepCopy()
    		se := c.Spec.(*networking.ServiceEntry)
    		se.Endpoints = append(se.Endpoints, &networking.WorkloadEntry{
    			Address: "6.6.6.6",
    			Labels:  map[string]string{"some-new-label": "bar"},
    		})
    		return &c
    	}()
    
    	// httpStaticOverlayUpdatedNop is the same as httpStaticOverlayUpdated but with a NOP change
    	httpStaticOverlayUpdatedNop := func() *config.Config {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // generic name and clashes with some other libraries.
    #if !GTEST_DONT_DEFINE_FAIL
    # define FAIL() GTEST_FAIL()
    #endif
    
    // Generates a success with a generic message.
    #define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded")
    
    // Define this macro to 1 to omit the definition of SUCCEED(), which
    // is a generic name and clashes with some other libraries.
    #if !GTEST_DONT_DEFINE_SUCCEED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    		buildHTTPService("test-headless.com", visibility.Public, wildcardIP, "not-default", 8888),
    		buildHTTPService("test-headless-someother.com", visibility.Public, wildcardIP, "some-other-ns", 8888),
    		buildHTTPService("a.test1.wildcard.com", visibility.Public, wildcardIP, "default", 8888),
    		buildHTTPService("*.test2.wildcard.com", visibility.Public, wildcardIP, "default", 8888),
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            dynamicBean.getAsDynamicObject().setProperty("prop", "value");
            assertThat(bean.getProp(), equalTo("value"));
            assertThat(bean.doStuff("some value"), equalTo("{some value}"));
        }
    
        @Test
        public void mixesInExtensionAwareInterface() throws Exception {
            Bean bean = newInstance(Bean.class);
            assertTrue(bean instanceof ExtensionAware);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    	Update(logger klog.Logger, oldPod, newPod *v1.Pod) error
    	Delete(pod *v1.Pod) error
    	// TODO(sanposhiho): move all PreEnqueueCkeck to Requeue and delete it from this parameter eventually.
    	// Some PreEnqueueCheck include event filtering logic based on some in-tree plugins
    	// and it affect badly to other plugins.
    	// See https://github.com/kubernetes/kubernetes/issues/110175
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Acceptable values are: Unknown, None, Some, NoneOnDryRun
    	// Webhooks with side effects MUST implement a reconciliation system, since a request may be
    	// rejected by a future step in the admission chain and the side effects therefore need to be undone.
    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    	// sideEffects == Unknown or Some. Defaults to Unknown.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
      // sideEffects == Unknown or Some.
      optional string sideEffects = 6;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	var status *framework.Status
    
    	podsAdded := false
    	// We run filters twice in some cases. If the node has greater or equal priority
    	// nominated pods, we run them when those pods are added to PreFilter state and nodeInfo.
    	// If all filters succeed in this pass, we run them again when these
    	// nominated pods are not added. This second pass is necessary because some
    	// filters such as inter-pod affinity may not pass without the nominated pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * </p><p>For example:
     * <pre>
     * defaultTasks('some-task')  // Delegates to Project.defaultTasks()
     * reportsDir = file('reports') // Delegates to Project.file() and the Java Plugin
     * </pre>
     * <p>You can also access the <code>Project</code> instance using the <code>project</code> property. This can make the
     * script clearer in some cases. For example, you could use <code>project.name</code> rather than <code>name</code> to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top