Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for dialing (0.1 sec)

  1. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

          }
        };
      }
    
      /**
       * Shuts down the given executor service gradually, first disabling new submissions and later, if
       * necessary, cancelling remaining tasks.
       *
       * <p>The method takes the following steps:
       *
       * <ol>
       *   <li>calls {@link ExecutorService#shutdown()}, disabling acceptance of new submitted tasks.
       *   <li>awaits executor service termination for half of the specified timeout.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/main.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bufio"
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"cmd/internal/quoted"
    	"cmd/internal/sys"
    	"cmd/internal/telemetry"
    	"cmd/link/internal/benchmark"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/plugin/noderesources.go

    			logger.V(5).Info("ResourceSlice delete", "slice", klog.KObj(slice))
    			c.queue.Add(slice.DriverName)
    		},
    	})
    	if err != nil {
    		logger.Error(err, "Registering event handler on the ResourceSlice informer failed, disabling resource monitoring")
    		return
    	}
    
    	// Start informer and wait for our cache to be populated.
    	c.wg.Add(1)
    	go func() {
    		defer c.wg.Done()
    		informer.Run(ctx.Done())
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-version/LICENSE

         rights to its Contributions conveyed by this License.
    
    2.6. Fair Use
    
         This License is not intended to limit any rights You have under applicable
         copyright doctrines of fair use, fair dealing, or other equivalents.
    
    2.7. Conditions
    
         Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
         Section 2.1.
    
    
    3. Responsibilities
    
    3.1. Distribution of Source Form
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    // decryptionKey is the parsed and expanded form of a PKE decryption key.
    type decryptionKey struct {
    	s [k]nttElement // ByteDecode₁₂(dk[:decryptionKeySize])
    }
    
    // GenerateKey generates a new decapsulation key, drawing random bytes from
    // crypto/rand. The decapsulation key must be kept secret.
    func GenerateKey() (*DecapsulationKey, error) {
    	// The actual logic is in a separate function to outline this allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. src/os/file.go

    // functionality. The design is Unix-like, although the error handling is
    // Go-like; failing calls return values of type error rather than error numbers.
    // Often, more information is available within the error. For example,
    // if a call that takes a file name fails, such as [Open] or [Stat], the error
    // will include the failing file name when printed and will be of type
    // [*PathError], which may be unpacked for more information.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            expect:
            2.times {
                fails("b", "d")
                result.assertTasksExecutedInOrder ":b", ":a"
            }
        }
    
        @Ignore
        void 'finalizer tasks work with task disabling (#taskDisablingStatement)'() {
            setupProject()
            buildFile << """
                $taskDisablingStatement
    
                gradle.taskGraph.whenReady { graph ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/sym.go

    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package obj
    
    import (
    	"cmd/internal/goobj"
    	"cmd/internal/notsha256"
    	"cmd/internal/objabi"
    	"encoding/base64"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            failure.assertHasErrorOutput("';' expected")
            failure.assertNotOutput("https://help.gradle.org")
            javaClassFile("").assertHasDescendants()
        }
    
        def "can compile bad code without failing"() {
            given:
            badCode()
    
            and:
            buildFile << "compileJava.options.failOnError = false"
    
            when:
            succeeds("compileJava")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/InetAddresses.java

     * possible over their JDK equivalents whenever you are expecting to handle only IP address string
     * literals -- there is no blocking DNS penalty for a malformed string.
     *
     * <p>When dealing with {@link Inet4Address} and {@link Inet6Address} objects as byte arrays (vis.
     * {@code InetAddress.getAddress()}) they are 4 and 16 bytes in length, respectively, and represent
     * the address in network byte order.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top