Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for internally (0.28 sec)

  1. pilot/pkg/model/service.go

    	TargetPortName string
    }
    
    type ServiceInfo struct {
    	*workloadapi.Service
    	// LabelSelectors for the Service. Note these are only used internally, not sent over XDS
    	LabelSelector
    	// PortNames provides a mapping of ServicePort -> port names. Note these are only used internally, not sent over XDS
    	PortNames map[int32]ServicePortName
    	// Source is the type that introduced this service.
    	Source kind.Kind
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. okhttp-testing-support/src/main/kotlin/okhttp3/TestValueFactory.kt

    import javax.net.ssl.SSLSocketFactory
    import okhttp3.internal.RecordingOkAuthenticator
    import okhttp3.internal.concurrent.TaskFaker
    import okhttp3.internal.concurrent.TaskRunner
    import okhttp3.internal.connection.CallConnectionUser
    import okhttp3.internal.connection.FastFallbackExchangeFinder
    import okhttp3.internal.connection.Locks.withLock
    import okhttp3.internal.connection.RealCall
    import okhttp3.internal.connection.RealConnection
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/runtime/tracemap.go

    // the same ID. The zero value is ready to use.
    //
    // Uses a region-based allocation scheme internally, and
    // reset clears the whole map.
    //
    // It avoids doing any high-level Go operations so it's safe
    // to use even in sensitive contexts.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type traceMap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_options.go

    		return fmt.Errorf("CPU Manager Policy Beta-level Options not enabled, but option %q provided", option)
    	}
    
    	return nil
    }
    
    // StaticPolicyOptions holds the parsed value of the policy options, ready to be consumed internally.
    type StaticPolicyOptions struct {
    	// flag to enable extra allocation restrictions to avoid
    	// different containers to possibly end up on the same core.
    	// we consider "core" and "physical CPU" synonim here, leaning
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    [[sec:publishing_your_plugin]]
    == Publishing the plugin
    
    If you publish your plugin internally for use within your organization, you can publish it like any other code artifact.
    See the <<publishing_ivy.adoc#publishing_ivy,Ivy>> and <<publishing_maven.adoc#publishing_maven,Maven>> chapters on publishing artifacts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     *                consistently. This file is not included in the distribution 
     *                headers because it is used internally by CUnit. (AK)
     *
     *  20-Jul-2004   New interface, support for deprecated version 1 names. (JDS)
     *
     *  5-Sep-2004    Added internal test interface. (JDS)
     *
     *  17-Apr-2006   Added CU_translated_strlen() and CU_number_width().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. pkg/kube/kclient/client.go

    type Filter = kubetypes.Filter
    
    // New returns a Client for the given type.
    // Internally, this uses a shared informer, so calling this multiple times will share the same internals.
    func New[T controllers.ComparableObject](c kube.Client) Client[T] {
    	return NewFiltered[T](c, Filter{})
    }
    
    // NewFiltered returns a Client with some filter applied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/api/types.go

    // (for a given signal, the decision to evict will be made when crossing the threshold
    // from either above or below, never both). There is thus no reason to expose the
    // operator in the Kubelet's public API. Instead, we internally map signal types to operators.
    var OpForSignal = map[Signal]ThresholdOperator{
    	SignalMemoryAvailable:            OpLessThan,
    	SignalNodeFsAvailable:            OpLessThan,
    	SignalNodeFsInodesFree:           OpLessThan,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

            nullptr);
    
    // Converts a TensorFlow V1 SavedModel stored in the directory with the given
    // `saved_model_dir` into a MLIR module. Creates MLIR entities into the
    // given MLIR `context`. This does not create session internally so it is faster
    // and does not perform any graph transformation.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    SavedModelSignatureDefsToMlirImportLite(
        absl::string_view saved_model_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/crypto/tls/tls.go

    // handshake as a whole.
    //
    // DialWithDialer interprets a nil configuration as equivalent to the zero
    // configuration; see the documentation of [Config] for the defaults.
    //
    // DialWithDialer uses context.Background internally; to specify the context,
    // use [Dialer.DialContext] with NetDialer set to the desired dialer.
    func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top