Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 241 for rootfs (0.16 sec)

  1. src/runtime/HACKING.md

    1. Any pointers from unmanaged memory to the heap must be garbage
       collection roots. More specifically, any pointer must either be
       accessible through a global variable or be added as an explicit
       garbage collection root in `runtime.markroot`.
    
    2. If the memory is reused, the heap pointers must be zero-initialized
       before they become visible as GC roots. Otherwise, the GC may
       observe stale heap pointers. See "Zero-initialization versus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

    or adjusting the quotient range affects the overall bound.
    
    All that said, Knuth remains the canonical reference. It is dense but packed
    full of information and references, and the proofs are simpler than many other
    presentations. The proofs above are reworkings of Knuth's to remove the
    arguments by contradiction and add explanations or steps that Knuth omitted.
    But beware of errors in older printings. Take the published errata with you.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances_test.go

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    							DefaultValidationContext: &auth.CertificateValidationContext{},
    							ValidationContextSdsSecretConfig: &auth.SdsSecretConfig{
    								Name: "ROOTCA",
    								SdsConfig: &core.ConfigSource{
    									InitialFetchTimeout: durationpb.New(time.Second * 0),
    									ResourceApiVersion:  core.ApiVersion_V3,
    									ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    	// Node identifier used by Envoy
    	ServiceNode string
    
    	// XDSRootCerts is the location of the root CA for the XDS connection. Used for setting platform certs or
    	// using custom roots.
    	XDSRootCerts string
    
    	// CARootCerts of the location of the root CA for the CA connection. Used for setting platform certs or
    	// using custom roots.
    	CARootCerts string
    
    	// Extra headers to add to the XDS connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - Kubeadm: fix a bug where the --rootfs global flag does not work with "kubeadm upgrade node" for control plane nodes. ([#123096](https://github.com/kubernetes/kubernetes/pull/123096), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    
    ## Dependencies
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	verifyOptions := defaultVerifyOptions()
    	verifyOptions.Roots, err = cert.NewPoolFromBytes(caBundle)
    	if err != nil {
    		return nil, fmt.Errorf("error loading CA bundle for %q: %v", name, err)
    	}
    
    	return &caBundleAndVerifier{
    		caBundle:      caBundle,
    		verifyOptions: verifyOptions,
    	}, nil
    }
    
    // defaultVerifyOptions returns VerifyOptions that use the system root certificates, current time,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks_test.go

    	if err != nil {
    		t.Errorf(
    			"failed configRootCAs:\n\texpected: has no error\n\tactual:%v",
    			err,
    		)
    	}
    	if config.RootCAs == nil {
    		t.Errorf(
    			"failed configRootCAs:\n\texpected: RootCAs not equal to nil\n\tactual:%v",
    			config.RootCAs,
    		)
    	}
    }
    func TestConfigCertAndKey(t *testing.T) {
    	certFile, err := os.CreateTemp(os.TempDir(), "kubeadm-external-etcd-test-certfile")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

                httpClient.processRobotsTxt(url);
                assertEquals(1, crawlerContext.getRobotsTxtUrlSet().size());
                assertTrue(crawlerContext.getRobotsTxtUrlSet().contains("http://localhost:7070/robots.txt"));
                assertFalse(urlFilter.match("http://localhost:7070/admin/"));
                assertFalse(urlFilter.match("http://localhost:7070/websvn/"));
            } finally {
                server.stop();
            }
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/istio_ca.go

    //
    // Support for signing other root CA has been removed - too dangerous, no clear use case.
    //
    // Default config, for backward compat with Citadel:
    // - if "cacerts" secret exists in istio-system, will be mounted. It may contain an optional "root-cert.pem",
    // with additional roots and optional {ca-key, ca-cert, cert-chain}.pem user-provided root CA.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top