Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 180 for internally (0.3 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

     *
     * @param <K> the type of the keys in the map
     * @param <V> the type of the values in the map
     * @param <E> the type of the {@link InternalEntry} entry implementation used internally
     * @param <S> the type of the {@link Segment} entry implementation used internally
     * @author Bob Lee
     * @author Charles Fry
     * @author Doug Lea ({@code ConcurrentHashMap})
     */
    // TODO(kak): Consider removing @CanIgnoreReturnValue from this class.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    * `SingleMessageLogger`
    * `VersionNumber`
    * `WrapUtil`
    
    [[dependency_factory_renamed]]
    ==== Internal DependencyFactory was renamed
    The internal `org.gradle.api.internal.artifacts.dsl.dependencies.DependencyFactory` type was renamed to `org.gradle.api.internal.artifacts.dsl.dependencies.DependencyFactoryInternal`.
    As an internal type, it should not be used, but for compatibility reasons the inner `ClassPathNotation` type is still available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    // license that can be found in the LICENSE file.
    
    package loader
    
    import (
    	"bytes"
    	"cmd/internal/bio"
    	"cmd/internal/goobj"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"fmt"
    	"internal/abi"
    	"io"
    	"log"
    	"math/bits"
    	"os"
    	"sort"
    	"strings"
    )
    
    var _ = fmt.Print
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    		// internalPolicyChain is the chain containing the endpoints for
    		// "internal" (ClusterIP) traffic. internalTrafficChain is the chain that
    		// internal traffic is routed to (which is always the same as
    		// internalPolicyChain). hasInternalEndpoints is true if we should
    		// generate rules pointing to internalTrafficChain, or false if there are
    		// no available internal endpoints.
    		internalPolicyChain := clusterPolicyChain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    	if err := hcnImpl.Ipv6DualStackSupported(); err != nil {
    		// Hcn *can* fail the query to grab the version of hcn itself (which this call will do internally before parsing
    		// to see if dual stack is supported), but the only time this can happen, at least that can be discerned, is if the host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    /*
     * Tool building
     */
    
    // mustLinkExternal is a copy of internal/platform.MustLinkExternal,
    // duplicated here to avoid version skew in the MustLinkExternal function
    // during bootstrapping.
    func mustLinkExternal(goos, goarch string, cgoEnabled bool) bool {
    	if cgoEnabled {
    		switch goarch {
    		case "loong64", "mips", "mipsle", "mips64", "mips64le":
    			// Internally linking cgo is incomplete on some architectures.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		t.registerTest("internal linking of -buildmode=pie",
    			&goTest{
    				variant:   "pie_internal",
    				timeout:   60 * time.Second,
    				buildmode: "pie",
    				ldflags:   "-linkmode=internal",
    				env:       []string{"CGO_ENABLED=0"},
    				pkg:       "reflect",
    			})
    		// Also test a cgo package.
    		if t.cgoEnabled && t.internalLink() && !disablePIE {
    			t.registerTest("internal linking of -buildmode=pie",
    				&goTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Configuration for the Istio CNI plugin.
      CNIUsageConfig istio_cni = 19 [deprecated = true];
    
      // Identifies the revision this installation is associated with.
      string revision = 21;
    
      // Used internally to identify the owner of each resource.
      string ownerName = 22;
    
      // Defines runtime configuration of components, including Istiod and istio-agent behavior.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. src/time/time.go

    const (
    	// The unsigned zero year for internal calculations.
    	// Must be 1 mod 400, and times before it will not compute correctly,
    	// but otherwise can be changed at will.
    	absoluteZeroYear = -292277022399
    
    	// The year of the zero Time.
    	// Assumed by the unixToInternal computation below.
    	internalYear = 1
    
    	// Offsets to convert between internal and absolute or Unix times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    // * We could allow NULL for some arguments (e.g., NULL options arg).
    //   However since convenience is not a primary goal, we don't do this.
    // * Devices are not in this API.  Instead, they are created/used internally
    //   and the API just provides high level controls over the number of
    //   devices of each type.
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top