Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for internally (0.33 sec)

  1. docs/bucket/lifecycle/DESIGN.md

    Extra metadata maintained internally in `xl.meta` for a transitioned object
    
    ```
    ...
            "MetaSys": {
              "x-minio-internal-transition-status": "Y29tcGxldGU=",
              "x-minio-internal-transition-tier": "R0NTVElFUjE=",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/jcifs/NetbiosAddress.java

    
    /**
     * This class represents a NetBIOS over TCP/IP address. Under normal
     * conditions, users of jCIFS need not be concerned with this class as
     * name resolution and session services are handled internally by the smb package.
     * 
     * <p>
     * Applications can use the methods <code>getLocalHost</code>,
     * <code>getByName</code>, and
     * <code>getAllByAddress</code> to create a new NbtAddress instance. This
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top