Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 219 for SELF (0.07 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            public void nagUser() {
                DeprecationLogger.nagUserWith(builder, WithDocumentation.class);
            }
        }
    
        public static abstract class WithReplacement<T, SELF extends WithReplacement<T, SELF>> extends DeprecationMessageBuilder<SELF> {
            protected final String subject;
            private T replacement;
    
            WithReplacement(String subject) {
                this.subject = subject;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    	SelfSignedCACertTTL = env.Register("CITADEL_SELF_SIGNED_CA_CERT_TTL",
    		cmd.DefaultSelfSignedCACertTTL,
    		"The TTL of self-signed CA root certificate.")
    
    	selfSignedRootCertCheckInterval = env.Register("CITADEL_SELF_SIGNED_ROOT_CERT_CHECK_INTERVAL",
    		cmd.DefaultSelfSignedRootCertCheckInterval,
    		"The interval that self-signed CA checks its root certificate "+
    			"expiration time and rotates root certificate. Setting this interval "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. docs/debugging/reorder-disks/main.go

    	result := make(map[string]string)
    
    	mountInfo, err := os.Open("/proc/self/mountinfo")
    	if err != nil {
    		return nil, err
    	}
    	defer mountInfo.Close()
    
    	scanner := bufio.NewScanner(mountInfo)
    	for scanner.Scan() {
    		s := strings.Split(scanner.Text(), " ")
    		if len(s) != 11 {
    			return nil, errors.New("unsupported /proc/self/mountinfo format")
    		}
    		result[s[2]] = s[9]
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/decls2/decls2a.go

    func (T3) m1() {}
    func (*T3) m2() {}
    func (x T3) m3() {}
    func (x *T3) f /* ERROR "field and method" */ () {}
    
    // Methods of non-struct type.
    type T4 func()
    
    func (self T4) m() func() { return self }
    
    // Methods associated with an interface.
    type T5 interface {
    	m() int
    }
    
    func (T5 /* ERROR "invalid receiver" */ ) m1() {}
    func (T5 /* ERROR "invalid receiver" */ ) m2() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/monitoring.go

    	// for pilot. a full design / implementation of self-monitoring and reporting
    	// is coming. that design will include proper coverage of statusz/healthz type
    	// functionality, in addition to how pilot reports its own metrics.
    	if err := addMonitor(mux); err != nil {
    		return nil, fmt.Errorf("could not establish self-monitoring: %v", err)
    	}
    	if addr != "" {
    		m.monitoringServer = &http.Server{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. plugin/pkg/admission/noderestriction/admission_test.go

    		{
    			name:       "allow creating a mirror pod bound to self",
    			podsGetter: noExistingPods,
    			attributes: admission.NewAttributesRecord(coremymirrorpod, nil, podKind, coremymirrorpod.Namespace, coremymirrorpod.Name, podResource, "", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "",
    		},
    		{
    			name:       "forbid update of mirror pod bound to self",
    			podsGetter: existingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certlist_test.go

    		CAName: "root",
    	}
    	leaf1 := &KubeadmCert{
    		Name:   "leaf1",
    		CAName: "root",
    	}
    	selfSigned := &KubeadmCert{
    		Name: "self-signed",
    	}
    
    	certMap := CertificateMap{
    		"root":        rootCert,
    		"leaf0":       leaf0,
    		"leaf1":       leaf1,
    		"self-signed": selfSigned,
    	}
    
    	orphanCertMap := CertificateMap{
    		"leaf0": leaf0,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/custom-docs-ui-assets.md

    ## Self-hosting JavaScript and CSS for docs
    
    Self-hosting the JavaScript and CSS could be useful if, for example, you need your app to keep working even while offline, without open Internet access, or in a local network.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			return fmt.Errorf("unable to generate self signed cert: %v", err)
    		} else if len(keyCert.CertFile) > 0 && len(keyCert.KeyFile) > 0 {
    			if err := certutil.WriteCert(keyCert.CertFile, cert); err != nil {
    				return err
    			}
    			if err := keyutil.WriteKey(keyCert.KeyFile, key); err != nil {
    				return err
    			}
    			klog.Infof("Generated self-signed cert (%s, %s)", keyCert.CertFile, keyCert.KeyFile)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/filters.go

    	return match.Network(from.Config().Cluster.NetworkName()).GetMatches(to)
    }
    
    // NoSelfCalls disallows self-calls where from and to have the same service name. Self-calls can
    // by-pass the sidecar, so tests relying on sidecar logic will sent to disable self-calls by default.
    var NoSelfCalls CombinationFilter = func(from echo.Instance, to echo.Instances) echo.Instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top