Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 276 for detective (0.24 sec)

  1. cmd/kubeadm/app/cmd/init_test.go

    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			// initialize an external init option and inject it to the init cmd
    			initOptions := newInitOptions()
    			initOptions.skipCRIDetect = true // avoid CRI detection in unit tests
    			cmd := newCmdInit(nil, initOptions)
    
    			// sets cmd flags (that will be reflected on the init options)
    			for f, v := range tc.flags {
    				cmd.Flags().Set(f, v)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. internal/http/headers.go

    	AmzVersionID    = "x-amz-version-id"
    	AmzDeleteMarker = "x-amz-delete-marker"
    
    	// S3 object tagging
    	AmzObjectTagging = "X-Amz-Tagging"
    	AmzTagCount      = "x-amz-tagging-count"
    	AmzTagDirective  = "X-Amz-Tagging-Directive"
    
    	// S3 transition restore
    	AmzRestore            = "x-amz-restore"
    	AmzRestoreExpiryDays  = "X-Amz-Restore-Expiry-Days"
    	AmzRestoreRequestDate = "X-Amz-Restore-Request-Date"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stdlib_test.go

    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test"),
    		"cmplxdivide.go", // also needs file cmplxdivide1.go - ignore
    		"directive.go",   // tests compiler rejection of bad directive placement - ignore
    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/go/types/stdlib_test.go

    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test"),
    		"cmplxdivide.go", // also needs file cmplxdivide1.go - ignore
    		"directive.go",   // tests compiler rejection of bad directive placement - ignore
    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                            }
    
                            final RobotsTxt.Directive directive = robotsTxt.getMatchedDirective(userAgent);
                            if (directive != null) {
                                if (useRobotsTxtDisallows) {
                                    for (String urlPattern : directive.getDisallows()) {
                                        if (StringUtil.isNotBlank(urlPattern)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe_test.go

       Matching subsets: 
          (Non-matching subsets v1)
       Traffic Policy TLS Mode: ISTIO_MUTUAL
       Policies: load balancer/connection pool/outlier detection
       Port Level Settings:
        8080:
          TLS Mode: DISABLE
          Policies: load balancer/connection pool/outlier detection
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

            this.matcher = new CachingAttributeMatcher(schema.matcher());
            this.transformCache = new TransformCache(this::doFindTransformedVariants);
        }
    
        /**
         * Executes the transform chain detection algorithm given a set of producer variants and the requested
         * attributes. Only the transform chains of the shortest depth are returned, and all results are
         * guaranteed to have the same depth.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. doc/asm.html

    <p>
    Global data symbols are defined by a sequence of initializing
    <code>DATA</code> directives followed by a <code>GLOBL</code> directive.
    Each <code>DATA</code> directive initializes a section of the
    corresponding memory.
    The memory not explicitly initialized is zeroed.
    The general form of the <code>DATA</code> directive is
    
    <pre>
    DATA	symbol+offset(SB)/width, value
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. okhttp/src/main/kotlin/okhttp3/Cache.kt

     * directive:
     *
     * ```java
     * Request request = new Request.Builder()
     *     .cacheControl(new CacheControl.Builder().noCache().build())
     *     .url("http://publicobject.com/helloworld.txt")
     *     .build();
     * ```
     *
     * If it is only necessary to force a cached response to be validated by the server, use the more
     * efficient `max-age=0` directive instead:
     *
     * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_traffic_policy.go

    func applyLocalityLoadBalancer(locality *core.Locality, proxyLabels map[string]string, cluster *cluster.Cluster,
    	localityLB *networking.LocalityLoadBalancerSetting,
    ) {
    	// Failover should only be applied with outlier detection, or traffic will never failover.
    	enableFailover := cluster.OutlierDetection != nil
    	if cluster.LoadAssignment != nil {
    		// TODO: enable failoverPriority for `STRICT_DNS` cluster type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top