Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,564 for currentCA (0.35 sec)

  1. cmd/kubeadm/app/apis/output/types.go

    	NewVersion     string
    	NodeName       string
    }
    
    // ComponentConfigVersionState describes the current and desired version of a component config
    type ComponentConfigVersionState struct {
    	// Group points to the Kubernetes API group that covers the config
    	Group string
    
    	// CurrentVersion is the currently active component config version
    	// NOTE: This can be empty in case the config was not found on the cluster or it was unsupported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Monitor.java

      }
    
      /**
       * Returns whether the current thread is occupying this monitor (has entered more times than it
       * has left).
       */
      public boolean isOccupiedByCurrentThread() {
        return lock.isHeldByCurrentThread();
      }
    
      /**
       * Returns the number of times the current thread has entered this monitor in excess of the number
       * of times it has left. Returns 0 if the current thread is not occupying this monitor.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // Note the following deviations from the "host" part of the
      // URI as defined in RFC 3986:
      // 1. IPs are not allowed. Currently an IngressRuleValue can only apply to
      //    the IP in the Spec of the parent Ingress.
      // 2. The `:` delimiter is not respected because ports are not allowed.
      // 	  Currently the port of an Ingress is implicitly :80 for http and
      // 	  :443 for https.
      // Both these may change in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

    These settings can be adjusted by setting 'org.gradle.jvmargs' in 'gradle.properties'.
    The currently configured max heap space is '512 MiB' and the configured max metaspace is 'unknown'.
    ${COMMON_HINT}""")
        }
    
        def "expires daemon immediately when garbage collector is thrashing"() {
            given:
            if (JavaVersion.current().isJava9Compatible() && GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

        return atomic == null ? 0L : atomic.get();
      }
    
      /**
       * Increments by one the value currently associated with {@code key}, and returns the new value.
       */
      @CanIgnoreReturnValue
      public long incrementAndGet(K key) {
        return addAndGet(key, 1);
      }
    
      /**
       * Decrements by one the value currently associated with {@code key}, and returns the new value.
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/runtime/tracestack.go

    			// capture here.
    			//
    			// (2) We're called against a gp that we're not currently executing on, but that isn't
    			// in a syscall, in which case it's currently not executing. gp.sched contains the most
    			// up-to-date information about where it stopped, and like case (1), we match gcallers
    			// here.
    			//
    			// (3) We're called against a gp that we're not currently executing on, but that is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. cmd/leak-detect_test.go

    		for _, g := range leaked {
    			t.Errorf("Leaked goroutine: %v", g)
    		}
    		return
    	}
    }
    
    // DetectTestLeak -  snapshots the currently running goroutines and returns a
    // function to be run at the end of tests to see whether any
    // goroutines leaked.
    // Usage: `defer DetectTestLeak(t)()` in beginning line of benchmarks or unit tests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/types.go

    }
    
    // ProxyMode represents modes used by the Kubernetes proxy server.
    //
    // Currently, three modes of proxy are available on Linux platforms: 'iptables', 'ipvs',
    // and 'nftables'. One mode of proxy is available on Windows platforms: 'kernelspace'.
    //
    // If the proxy mode is unspecified, the best-available proxy mode will be used (currently this
    // is `iptables` on Linux and `kernelspace` on Windows). If the selected proxy mode cannot be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/query.go

    	if (query == "upgrade" || query == "patch") && current != "" && current != "none" {
    		// "upgrade" and "patch" may stay on the current version if allowed.
    		if err := allowed(ctx, module.Version{Path: path, Version: current}); errors.Is(err, ErrDisallowed) {
    			return revWithOrigin(nil), err
    		}
    		return lookup(current)
    	}
    
    	return revWithOrigin(nil), &NoMatchingVersionError{query: query, current: current}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  10. src/runtime/mgclimit.go

    }
    
    // update updates the bucket given runtime-specific information. now is the
    // current monotonic time in nanoseconds.
    //
    // This is safe to call concurrently with other operations, except *GCTransition.
    func (l *gcCPULimiterState) update(now int64) {
    	if !l.tryLock() {
    		// We failed to acquire the lock, which means something else is currently
    		// updating. Just drop our update, the next one to update will include
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top