Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,200 for tpool_ (0.19 sec)

  1. Makefile

    # Set the environment variable BUILD_WITH_CONTAINER to use a container
    # to build the repo. The only dependencies in this mode are to have make and
    # docker. If you'd rather build with a local tool chain instead, you'll need to
    # figure out all the tools you need in your environment to make that work.
    export BUILD_WITH_CONTAINER ?= 0
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/link/dwarf_test.go

    	}
    	if err := testenv.Command(t, "xcrun", "--help").Run(); err != nil {
    		t.Skipf("error running xcrun, required for iOS cross build: %v", err)
    	}
    	// Check to see if the ios tools are installed. It's possible to have the command line tools
    	// installed without the iOS sdk.
    	if output, err := testenv.Command(t, "xcodebuild", "-showsdks").CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.standard-tool-chains.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 99 bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    ## Container Images
    
    Docker has been one of the main tools to create and manage **container images** and **containers**.
    
    And there's a public <a href="https://hub.docker.com/" class="external-link" target="_blank">Docker Hub</a> with pre-made **official container images** for many tools, environments, databases, and applications.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. tools/packaging/common/sidecar.env

    # Ignore Istio iptables custom rules
    # Enable this flag if you would like to manage iptables yourself. Default to false (true/false)
    # ISTIO_CUSTOM_IP_TABLES=false
    
    # Location of provisioning certificates. VM provisioning tools must generate a certificate with
    # the expected SAN. Istio-agent will use it to connect to istiod and get fresh certificates.
    # PROV_CERT=/var/run/secrets/istio
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * the server responds with `HTTP/1.0`, that will be exposed by [Response.protocol].
         *
         * [alpn]: http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg
         * [rfc_2616]: http://www.w3.org/Protocols/rfc2616/rfc2616.html
         * [rfc_7540]: https://tools.ietf.org/html/rfc7540
         * [rfc_7540_34]: https://tools.ietf.org/html/rfc7540#section-3.4
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. src/cmd/link/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Link, typically invoked as “go tool link”, reads the Go archive or object
    for a package main, along with its dependencies, and combines them
    into an executable binary.
    
    # Command Line
    
    Usage:
    
    	go tool link [flags] main.a
    
    Flags:
    
    	-B note
    		Add an ELF_NT_GNU_BUILD_ID note when using ELF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/help.go

    // license that can be found in the LICENSE file.
    
    package analysisflags
    
    import (
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"sort"
    	"strings"
    
    	"golang.org/x/tools/go/analysis"
    )
    
    const help = `PROGNAME is a tool for static analysis of Go programs.
    
    PROGNAME examines Go source code and reports suspicious constructs,
    such as Printf calls whose arguments do not align with the format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 01:33:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. mockwebserver/src/main/kotlin/mockwebserver3/SocketPolicy.kt

       * simulate late connection pool failures.
       */
      object DisconnectAfterRequest : SocketPolicy
    
      /**
       * Half close connection (InputStream for client) after reading the request but before
       * writing the response. Use this to simulate late connection pool failures.
       */
      object HalfCloseAfterRequest : SocketPolicy
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    			}
    		}
    
    		if volume.RBD != nil && existingVolume.RBD != nil {
    			mon, pool, image := volume.RBD.CephMonitors, volume.RBD.RBDPool, volume.RBD.RBDImage
    			emon, epool, eimage := existingVolume.RBD.CephMonitors, existingVolume.RBD.RBDPool, existingVolume.RBD.RBDImage
    			// two RBDs images are the same if they share the same Ceph monitor, are in the same RADOS Pool, and have the same image name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top