Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 355 for xHello (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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.9K bytes
    - Viewed (0)
  5. src/crypto/tls/key_agreement.go

    // encrypts the pre-master secret to the server's public key.
    type rsaKeyAgreement struct{}
    
    func (ka rsaKeyAgreement) generateServerKeyExchange(config *Config, cert *Certificate, clientHello *clientHelloMsg, hello *serverHelloMsg) (*serverKeyExchangeMsg, error) {
    	return nil, nil
    }
    
    func (ka rsaKeyAgreement) processClientKeyExchange(config *Config, cert *Certificate, ckx *clientKeyExchangeMsg, version uint16) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/crypto/ed25519/ed25519_test.go

    	if err != nil {
    		b.Fatal(err)
    	}
    	message := []byte("Hello, world!")
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		Sign(priv, message)
    	}
    }
    
    func BenchmarkVerification(b *testing.B) {
    	var zero zeroReader
    	pub, priv, err := GenerateKey(zero)
    	if err != nil {
    		b.Fatal(err)
    	}
    	message := []byte("Hello, world!")
    	signature := Sign(priv, message)
    	b.ResetTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    [source, java]
    ----
    package authoring.tutorial;
    
    public class App {
        public String getGreeting() {
            return "Hello World!";
        }
    
        public static void main(String[] args) {
            System.out.println(new App().getGreeting());
        }
    }
    ----
    
    The code prints out a simple "Hello World" greeting to the screen.
    
    A test class is available at `app/src/test/java/authoring/tutorial/AppTest.java`:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/net/http/clientserver_test.go

    	// We should have "Hello" at least sitting there.
    	firstRead := make([]byte, 10)
    	n, err := res.Body.Read(firstRead)
    	if err != nil {
    		t.Fatal(err)
    	}
    	firstRead = firstRead[:n]
    
    	close(cancel)
    
    	rest, err := io.ReadAll(res.Body)
    	all := string(firstRead) + string(rest)
    	if all != "Hello" {
    		t.Errorf("Read %q (%q + %q); want Hello", all, firstRead, rest)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/DuplexTest.kt

          MockResponse.Builder()
            .headersDelay(1500, TimeUnit.MILLISECONDS)
            .build(),
        )
        val request =
          Request.Builder()
            .url(server.url("/"))
            .post(DelayedRequestBody("hello".toRequestBody(null), 1500, TimeUnit.MILLISECONDS))
            .build()
        client =
          client.newBuilder()
            .readTimeout(1000, TimeUnit.MILLISECONDS)
            .build()
        val call = client.newCall(request)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    			expectedReason: metav1.StatusReasonAlreadyExists,
    		},
    		{
    			name:           "Nested, no match",
    			err:            fmt.Errorf("wrapping: %w", fmt.Errorf("some more: %w", errors.New("hello"))),
    			expectedReason: metav1.StatusReasonUnknown,
    		},
    		{
    			name:           "Nil",
    			expectedReason: metav1.StatusReasonUnknown,
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top