Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 817 for lived (0.07 sec)

  1. pkg/kube/client_factory.go

    	schemelessHost := strings.Replace(strings.Replace(host, "https://", "", 1), "http://", "", 1)
    	// now do a simple collapse of non-AZ09 characters.  Collisions are possible but unlikely.  Even if we do collide the problem is short lived
    	safeHost := overlyCautiousIllegalFileCharacters.ReplaceAllString(schemelessHost, "_")
    	return filepath.Join(parentDir, safeHost)
    }
    
    func (c *clientFactory) ToRESTMapper() (meta.RESTMapper, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    A typical example is whenever a component is relocated at different coordinates in a new release.
    For example, the ASM library lived at `asm:asm` coordinates until version `3.3.1`, then changed to `org.ow2.asm:asm` since `4.0`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/kubelet.go

    		&compbasemetrics.HistogramOpts{
    			Subsystem: metrics.KubeletSubsystem,
    			Name:      "certificate_manager_server_rotation_seconds",
    			Help:      "Histogram of the number of seconds the previous certificate lived before being rotated.",
    			Buckets: []float64{
    				60,        // 1  minute
    				3600,      // 1  hour
    				14400,     // 4  hours
    				86400,     // 1  day
    				604800,    // 1  week
    				2592000,   // 1  month
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pkg/serviceaccount/legacy.go

    			return nil, fmt.Errorf("ServiceAccount UID (%s) does not match claim (%s)", serviceAccount.UID, serviceAccountUID)
    		}
    
    		// Track secret-based long-lived service account tokens and add audit annotations and metrics.
    		autoGenerated := false
    
    		// Check if the secret has been marked as invalid
    		if invalidSince := secret.Labels[InvalidSinceLabelKey]; invalidSince != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/options/options.go

    		"The JWT validation policy.")
    	// ProvCert is the environment controlling the use of pre-provisioned certs, for VMs.
    	// May also be used in K8S to use a Secret to bootstrap (as a 'refresh key'), but use short-lived tokens
    	// with extra SAN (labels, etc) in data path.
    	provCert = env.Register("PROV_CERT", "",
    		"Set to a directory containing provisioned certs, for VMs").Get()
    
    	// set to "SYSTEM" for ACME/public signed XDS servers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. architecture/security/istio-agent.md

    metadata server), and a `TokenExchanger` which allows exchanging a token for another form to match the CA server requirements.
    
    For VMs, the standard flow is for the user to provision a short-lived JWT token onto the VM. After the initial
    CSR, certificates are written to disk and mTLS is used for future requests. If the VM restarted, it would continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/syscall/exec_unix.go

    // the lock across those operations.
    //
    // It is worse to inherit some file descriptors than others.
    // If a non-malicious child accidentally inherits an open ordinary file,
    // that's not a big deal. On the other hand, if a long-lived child
    // accidentally inherits the write end of a pipe, then the reader
    // of that pipe will not see EOF until that child exits, potentially
    // causing the parent program to hang. This is a common problem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ProjectConnection.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    import java.io.Closeable;
    import java.nio.file.Path;
    import java.util.List;
    
    /**
     * <p>Represents a long-lived connection to a Gradle project. You obtain an instance of a {@code ProjectConnection} by using {@link org.gradle.tooling.GradleConnector#connect()}.</p>
     *
     * <pre class='autoTested'>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.IMMEDIATE_EXPIRE;
    import static org.gradle.launcher.daemon.server.expiry.DaemonExpirationStatus.QUIET_EXPIRE;
    
    /**
     * A long-lived build server that accepts commands via a communication channel.
     * <p>
     * Daemon instances are single use and have a start/stop debug. They are also threadsafe.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/Striped64.java

       * expanded mask.  We do not try to detect or remove such cells,
       * under the assumption that for long-running instances, observed
       * contention levels will recur, so the cells will eventually be
       * needed again; and for short-lived ones, it does not matter.
       */
    
      /**
       * Padded variant of AtomicLong supporting only raw accesses plus CAS. The value field is placed
       * between pads, hoping that the JVM doesn't reorder them.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top