Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 407 for xHello (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

    func.func @testIf1Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>) -> tensor<*xf32> {
      %0 = "tf.If"(%arg0, %arg1) {
        then_branch = @testIf1Then, else_branch = @testIf1Else, is_stateless = false,
        _attr0 = 10, _attr1 = true, attr2 = "hello"
      } : (tensor<i1>, tensor<*xf32>) -> tensor<*xf32>
    
      // CHECK: "tf.IfRegion"
      // CHECK-SAME: <{_else_func_name = "testIf1Else"
      // CHECK-SAME: _then_func_name = "testIf1Then"
      // CHECK-SAME: is_stateless = false
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                    // remaining parts.
                    // E.g., coreR.string.hello
                    //   -> string.hello (drop the first segment)
                    //   test.pkg.R.string.hello
                    //   -> string.hello (take last two segments, where the size is determined by the size of qualified access minus 1)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. src/net/http/cgi/host_test.go

    	}
    }
    
    func TestCGIBasicGet(t *testing.T) {
    	testenv.MustHaveExec(t)
    	h := &Handler{
    		Path: os.Args[0],
    		Root: "/test.cgi",
    	}
    	expectedMap := map[string]string{
    		"test":                  "Hello CGI",
    		"param-a":               "b",
    		"param-foo":             "bar",
    		"env-GATEWAY_INTERFACE": "CGI/1.1",
    		"env-HTTP_HOST":         "example.com:80",
    		"env-PATH_INFO":         "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta_test.go

    	addTestClientEndpoints(s.MemRegistry)
    	s.MemRegistry.AddHTTPService(edsIncSvc, edsIncVip, 8080)
    	s.MemRegistry.SetEndpoints(edsIncSvc, "",
    		newEndpointWithAccount("127.0.0.1", "hello-sa", "v1"))
    	// Wait until the above debounce, to ensure we can precisely check XDS responses without spurious pushes
    	s.EnsureSynced(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectDecoratedTest.groovy

                    return ["Hello", "Number"]
                }
                assert type == Number
                return 12
            }
    
            when:
            def obj = create(AbstractClassRealizingTwoTypeParameters, services)
    
            then:
            obj.thing == 12
            obj.getThing() == 12
            obj.getProperty("thing") == 12
            obj.getOtherThing() == ["Hello", "Number"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

      func.func @init_all_tables() attributes {tf_saved_model.exported_names = ["__tf_saved_model_session_initializer_init_all_tables"], tf_saved_model.initializer_type = "init_op"} {
        %cst = "tf.Const"() {value = dense<["hello", "model", "quantization"]> : tensor<3x!tf_type.string>} : () -> tensor<3x!tf_type.string>
        %cst_0 = "tf.Const"() {value = dense<[0, 1, 2]> : tensor<3xi64>} : () -> tensor<3xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    [source,kotlin]
    ----
    tasks.register("helloTask") {
        group = "Other"
        description = "Hello task"
        println("Hello")
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .app/build.gradle
    [source,groovy]
    ----
    tasks.register("helloTask") {
        group = "Other"
        description = "Hello task"
        println("Hello")
    }
    ----
    =====
    ====
    
    Now that the group is added, the task is visible:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/debug/elf/symbols_test.go

    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "initfini.c",
    			Info:    0x4,
    			Other:   0x0,
    			Section: 0xFFF1,
    			Value:   0x0,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "hello.c",
    			Info:    0x4,
    			Other:   0x0,
    			Section: 0xFFF1,
    			Value:   0x0,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "_GLOBAL_OFFSET_TABLE_",
    			Info:    0x1,
    			Other:   0x2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 05 18:18:26 UTC 2019
    - 13.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    include::sample[dir="snippets/tutorial/taskOnlyIf/groovy",files="build.gradle[]"]
    
    ----
    $ gradle hello -PskipHello
    include::{snippetsPath}/tutorial/taskOnlyIf/tests/taskOnlyIf.out[]
    ----
    ====
    
    To find why a task was skipped, run the build with the `--info` logging level.
    
    ====
    ----
    $ gradle hello -PskipHello --info
    include::{snippetsPath}/tutorial/taskOnlyIf/tests/taskOnlyIf-info.out[]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

        assertEquals(TypeToken.of(String.class), invokable.getParameters().get(1).getType());
      }
    
      public void testAnonymousClassDefaultConstructor() {
        final int i = 1;
        final String s = "hello world";
        Class<?> anonymous =
            new Runnable() {
              @Override
              public void run() {
                System.out.println(s + i);
              }
            }.getClass();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.8K bytes
    - Viewed (0)
Back to top