Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 272 for facility (0.16 sec)

  1. pkg/volume/hostpath/host_path.go

    	"k8s.io/kubernetes/pkg/volume/validation"
    	"k8s.io/mount-utils"
    )
    
    // ProbeVolumePlugins is the primary entrypoint for volume plugins.
    // The volumeConfig arg provides the ability to configure volume behavior.  It is implemented as a pointer to allow nils.
    // The hostPathPlugin is used to store the volumeConfig and give it, when needed, to the func that Recycles.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/runtime/mgcwork.go

    // The buffers are being put on the full queue so that the
    // write barriers will not simply reacquire them before the
    // GC can inspect them. This helps reduce the mutator's
    // ability to hide pointers during the concurrent mark phase.
    //
    //go:nowritebarrierrec
    func (w *gcWork) dispose() {
    	if wbuf := w.wbuf1; wbuf != nil {
    		if wbuf.nobj == 0 {
    			putempty(wbuf)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[signing_plugin]]
    = The Signing Plugin
    
    The Signing Plugin adds the ability to digitally sign built files and artifacts. These digital signatures can then be used to prove who built the artifact the signature is attached to as well as other information such as when the signature was generated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. pkg/kube/multicluster/secretcontroller_test.go

    }
    
    func (i *informerHandler[T]) Close() {
    	i.client.ShutdownHandlers()
    }
    
    func (i *informerHandler[T]) HasSynced() bool {
    	return i.client.HasSynced()
    }
    
    // Test our (lack of) ability to do seamless updates of a cluster.
    // Tracking improvements in https://github.com/istio/istio/issues/49349
    func TestSeamlessMigration(t *testing.T) {
    	stop := make(chan struct{})
    	c := buildTestController(t, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. pkg/registry/core/rest/storage_core.go

    func (s componentStatusStorage) serversToValidate() map[string]componentstatus.Server {
    	// this is fragile, which assumes that the default port is being used
    	// TODO: switch to secure port until these components remove the ability to serve insecurely.
    	serversToValidate := map[string]componentstatus.Server{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.10.md

    * The ability to use kubectl scale jobs is deprecated. All other scale operations remain in place, but the ability to scale jobs will be removed in a future release.  ([#60139](https://github.com/kubernetes/kubernetes/pull/60139), [@soltysh](https://github.com/soltysh))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    
    
    [[native_binaries:visual_studio]]
    == Visual Studio IDE integration
    
    Gradle has the ability to generate Visual Studio project and solution files for the native components defined in your build. This ability is added by the `visual-studio` plugin. For a multi-project build, all projects with native components (and the root project) should have this plugin applied.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// Secondly, this field is intended for internal clients only such as the watch cache.
    	//
    	// This means that external clients do not have the ability to set this field directly.
    	// For example by setting the allowWatchBookmarks query parameter.
    	//
    	// The motivation for this approach is the fact that the frequency
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"Determines if the file set by --encryption-provider-config should be automatically reloaded if the disk contents change. "+
    			"Setting this to true disables the ability to uniquely identify distinct KMS plugins via the API server healthz endpoints.")
    
    	fs.DurationVar(&s.StorageConfig.CompactionInterval, "etcd-compaction-interval", s.StorageConfig.CompactionInterval,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

          } finally {
            events.clear();
          }
        }
    
        @Override
        public String toString() {
          return events.toString();
        }
      }
    
      @AndroidIncompatible // Mockito loses its ability to mock doGetRate as of Android 21
      public void testMockingMockito() throws Exception {
        RateLimiter mock = Mockito.mock(RateLimiter.class);
        for (Method method : RateLimiter.class.getMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top