Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,355 for doPing (0.11 sec)

  1. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/groovy/build.gradle

            standardInput = new ByteArrayInputStream("$loginCredentials.username\n$loginCredentials.password".getBytes())
        }
    }
    
    tasks.register('doAuthenticated') {
        dependsOn(login)
        doLast {
            println 'Doing authenticated task'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 521 bytes
    - Viewed (0)
  2. testing/precondition-tester/build.gradle.kts

            because("Basic precondition framework and unit test preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":internal-integ-testing"))) {
            because("Integration testing preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":signing"))) {
            because("Signing preconditions are coming from here")
        }
        testImplementation(testFixtures(project(":test-kit"))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/net/rlimit_js.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js
    
    package net
    
    // concurrentThreadsLimit returns the number of threads we permit to
    // run concurrently doing DNS lookups.
    func concurrentThreadsLimit() int {
    	return 500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 346 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    You can utilize both a local and a remote cache for a compound effect.
    While loading results from a CI-filled remote cache helps to avoid work needed because of changes by other developers, the local cache can speed up switching branches and doing `git bisect`.
    On CI machines the local cache can act as a mirror of the remote cache, significantly reducing network usage.
    
    == Share results between developers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_signal2_ios_arm64.c

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build lldb
    
    // Used by gcc_signal_darwin_arm64.c when doing the test build during cgo.
    // We hope that for real binaries the definition provided by Go will take precedence
    // and the linker will drop this .o file altogether, which is why this definition
    // is all by itself in its own file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 508 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/subst.go

    		if base != t.base {
    			return &Pointer{base: base}
    		}
    
    	case *Tuple:
    		return subst.tuple(t)
    
    	case *Signature:
    		// Preserve the receiver: it is handled during *Interface and *Named type
    		// substitution.
    		//
    		// Naively doing the substitution here can lead to an infinite recursion in
    		// the case where the receiver is an interface. For example, consider the
    		// following declaration:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/crypto/rsa/pkcs1v15.go

    		return nil, err
    	}
    	k := pub.Size()
    	if len(msg) > k-11 {
    		return nil, ErrMessageTooLong
    	}
    
    	if boring.Enabled && random == boring.RandReader {
    		bkey, err := boringPublicKey(pub)
    		if err != nil {
    			return nil, err
    		}
    		return boring.EncryptRSAPKCS1(bkey, msg)
    	}
    	boring.UnreachableExceptTests()
    
    	// EM = 0x00 || 0x02 || PS || 0x00 || M
    	em := make([]byte, k)
    	em[1] = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    #### C++ coding style
    
    Changes to TensorFlow C++ code should conform to
    [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).
    
    Use `clang-tidy` to check your C/C++ changes. To install `clang-tidy` on ubuntu:16.04, do:
    
    ```bash
    apt-get install -y clang-tidy
    ```
    
    You can check a C/C++ file by doing:
    
    
    ```bash
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerThreadRegistry.java

         * A worker lease is also granted to the thread. The thread can release this if it needs to, but should reacquire
         * the lease prior to doing any meaningful work.
         *
         * This method is reentrant so that a thread can call this method from the given action.
         *
         * This method blocks until a worker lease is available.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/testing/defaults/defaults.go

    		Enabled: []config.Plugin{
    			// Weight is tripled because:
    			// - This is a score coming from user preference.
    			// - Usage of node tainting to group nodes in the cluster is increasing becoming a use-case
    			// for many user workloads
    			{Name: names.TaintToleration, Weight: 3},
    			// Weight is doubled because:
    			// - This is a score coming from user preference.
    			{Name: names.NodeAffinity, Weight: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top