Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 241 for rootfs (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/userguide_single.adoc

    // limitations under the License.
    
    = Gradle User Manual: Version {gradleVersion}
    :description: Single-page Gradle User Manual for Gradle {gradleVersion}
    :meta-name-robots: noindex
    :meta-name-twitter_card: summary
    :meta-name-twitter_site: @gradle
    :meta-name-twitter_creator: @gradle
    :meta-name-twitter_title: Gradle User Manual: Version {gradleVersion}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

            final Map<String, String> clientConfigMap = getConfigParameterMap(ConfigName.CLIENT);
            if (clientConfigMap != null) {
                paramMap.putAll(clientConfigMap);
            }
    
            // robots txt enabled
            if (paramMap.get(Param.Client.ROBOTS_TXT_ENABLED) == null) {
                paramMap.put(Param.Client.ROBOTS_TXT_ENABLED, !fessConfig.isCrawlerIgnoreRobotsTxt());
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                return;
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing {}", HcHttpClient.class.getName());
            }
    
            super.init();
    
            // robots.txt parser
            final Boolean robotsTxtEnabled = getInitParameter(ROBOTS_TXT_ENABLED_PROPERTY, Boolean.TRUE, Boolean.class);
            if (robotsTxtHelper != null) {
                robotsTxtHelper.setEnabled(robotsTxtEnabled);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  4. src/os/path_windows_test.go

    		if err != nil {
    			t.Fatalf("Open(%q) failed: %v", test, err)
    		}
    		dir.Close()
    	}
    }
    
    func testMkdirAllAtRoot(t *testing.T, root string) {
    	// Create a unique-enough directory name in root.
    	base := fmt.Sprintf("%s-%d", t.Name(), os.Getpid())
    	path := filepath.Join(root, base)
    	if err := os.MkdirAll(path, 0777); err != nil {
    		t.Fatalf("MkdirAll(%q) failed: %v", path, err)
    	}
    	// Clean up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/proxy_dependencies_test.go

    	const (
    		svcName        = "svc1.com"
    		privateSvcName = "private.com"
    		drName         = "dr1"
    		vsName         = "vs1"
    		scName         = "sc1"
    		nsName         = "ns1"
    		nsRoot         = "rootns"
    		generalName    = "name1"
    
    		invalidNameSuffix = "invalid"
    	)
    
    	type Case struct {
    		name    string
    		proxy   *model.Proxy
    		configs sets.Set[model.ConfigKey]
    		want    bool
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/net/http/server_test.go

    	}
    	mux := NewServeMux()
    	mux.HandleFunc("/", fn)
    	mux.HandleFunc("/index", fn)
    	mux.HandleFunc("/home", fn)
    	mux.HandleFunc("/about", fn)
    	mux.HandleFunc("/contact", fn)
    	mux.HandleFunc("/robots.txt", fn)
    	mux.HandleFunc("/products/", fn)
    	mux.HandleFunc("/products/1", fn)
    	mux.HandleFunc("/products/2", fn)
    	mux.HandleFunc("/products/3", fn)
    	mux.HandleFunc("/products/3/image.jpg", fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 13:54:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. pkg/security/security.go

    	GkeWorkloadRootCertFilePath = WorkloadIdentityCredentialsPath + "/ca_certificates.pem"
    
    	// SystemRootCerts is special case input for root cert configuration to use system root certificates.
    	SystemRootCerts = "SYSTEM"
    
    	// RootCertReqResourceName is resource name of discovery request for root certificate.
    	RootCertReqResourceName = "ROOTCA"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache.go

    		ns.RootCert = sc.mergeTrustAnchorBytes(ns.RootCert)
    	} else {
    		// If periodic cert refresh resulted in discovery of a new root, trigger a ROOTCA request to refresh trust anchor
    		oldRoot := sc.cache.GetRoot()
    		if !bytes.Equal(oldRoot, ns.RootCert) {
    			cacheLog.Info("Root cert has changed, start rotating root cert")
    			// We store the oldRoot only for comparison and not for serving
    			sc.cache.SetRoot(ns.RootCert)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * all components from this class, and the upfront construction taken care of entirely by the {@link ProjectBuilder}.
     * There is still the issue of having to run the lifecycle in order to find all the compile source roots and resource
     * directories but I hope to take care of this during the Maven 4.0 release (jvz).
     * </p>
     */
    public class MavenProject implements Cloneable {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// If absent while TCPTransport.URL is prefixed with https://, default to system trust roots.
    	// +optional
    	CABundle string
    
    	// clientKey is the file location of the client key to authenticate with the konnectivity server
    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top