Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 501 for SIMPLE (0.19 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestEnvironmentIntegrationTest.groovy

                }
            """.stripIndent()
            buildFile << """
                dependencies {
                    implementation 'org.slf4j:slf4j-api:1.7.30'
                    testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.30'
                }
    
                test {
                    systemProperties 'java.system.class.loader':'org.gradle.MySystemClassLoader'
                }
            """.stripIndent()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #define CU_PASS(msg) \
      { CU_assertImplementation(CU_TRUE, __LINE__, ("CU_PASS(" #msg ")"), __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure with no other action.
     */
    #define CU_ASSERT(value) \
      { CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure and causes test to abort.
     */
    #define CU_ASSERT_FATAL(value) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. pkg/config/validation/virtualservice_test.go

    	"istio.io/istio/pkg/config"
    )
    
    func TestValidateChainingVirtualService(t *testing.T) {
    	testCases := []struct {
    		name  string
    		in    proto.Message
    		valid bool
    	}{
    		{
    			name: "root simple",
    			in: &networking.VirtualService{
    				Hosts:    []string{"foo.bar"},
    				Gateways: []string{"test-gateway"},
    				Http: []*networking.HTTPRoute{{
    					Delegate: &networking.Delegate{
    						Name:      "test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      EXPECT_FALSE(IsEinsumSupportedByXlaDotV2(einsum_one_operand));
      EXPECT_FALSE(IsEinsumSupportedByXlaDotV2(einsum_ellipsis));
    }
    
    TEST_F(LiftAsFunctionCallTest, GetQuantizationMethodSucceeds) {
      // Function containing a simple `TF::XlaCallModuleOp` with a valid string
      // attribute `_quantization_method` set to `"no_quantization {}"`.
      constexpr absl::string_view kXlaCallModuleOpWithQuantizationMethodAttr =
          R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-functional-control-flow-to-regions{allow-passthrough-args})' -split-input-file -verify-diagnostics | FileCheck %s
    
    // Simple If
    // CHECK: func private @testIf1Then{{.+}}
    // CHECK: func private @testIf1Else{{.+}}
    func.func private @testIf1Then(tensor<*xf32>) -> tensor<*xf32>
    func.func private @testIf1Else(tensor<*xf32>) -> tensor<*xf32>
    
    // CHECK-LABEL: func @testIf1Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    	}{
    		{
    			name:   "simple pod not running and not have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    				},
    			},
    			result: nil,
    		},
    		{
    			name:   "simple pod not running but have podIP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/first-steps.md

    # Primeros pasos
    
    Un archivo muy simple de FastAPI podría verse así:
    
    ```Python
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Copia eso a un archivo `main.py`.
    
    Corre el servidor en vivo:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/first-steps.md

    # Démarrage
    
    Le fichier **FastAPI** le plus simple possible pourrait ressembler à cela  :
    
    ```Python
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Copiez ce code dans un fichier nommé `main.py`.
    
    Démarrez le serveur :
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. docs/fr/docs/alternatives.md

    Requests a un design très simple et intuitif, il est très facile à utiliser, avec des valeurs par défaut raisonnables, tout en étant très puissant et personnalisable.
    
    C'est pourquoi, comme le dit le site officiel :
    
    > Requests est l'un des packages Python les plus téléchargés de tous les temps
    
    La façon dont vous l'utilisez est très simple. Par exemple, pour faire une requête `GET`, vous devez écrire :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    				value = "null"
    			} else {
    				value = reflectValue.Elem().Interface()
    			}
    		}
    		switch t := value.(type) {
    		case int64, int32, float64, float32, bool:
    			// use simple printer for simple types
    			s = fmt.Sprintf("%s: %v", v.Type, value)
    		case string:
    			s = fmt.Sprintf("%s: %q", v.Type, t)
    		case fmt.Stringer:
    			// anything that defines String() is better than raw struct
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top