Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for delay (0.09 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

        protected static final Pattern ALLOW_RECORD = Pattern.compile("^allow:\\s*([^\\s]*)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected static final Pattern CRAWL_DELAY_RECORD = Pattern.compile("^crawl-delay:\\s*([^\\s]+)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected static final Pattern SITEMAP_RECORD = Pattern.compile("^sitemap:\\s*([^\\s]+)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected boolean enabled = true;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/registryredirector/kube.go

    		return err
    	}
    
    	err = retry.UntilSuccess(func() error {
    		_, err := client.Post(fmt.Sprintf("http://%s/admin/v1/tagmap", c.forwarder.Address()), "application/json", bytes.NewBuffer(body))
    		return err
    	}, retry.Delay(100*time.Millisecond), retry.Timeout(20*time.Second))
    	if err != nil {
    		return err
    	}
    
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    									}
    									if !tracing.VerifyOtelEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    										return errors.New("cannot find expected traces")
    									}
    									return nil
    								}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    							})
    						}
    					})
    			}
    		})
    }
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/customize_metrics_test.go

    				}
    				_, err = util.QueryPrometheus(t, cluster, grpcDestinationQuery, promInst)
    				if err != nil {
    					util.PromDiff(t, promInst, cluster, grpcDestinationQuery)
    					return err
    				}
    				return nil
    			}, retry.Delay(1*time.Second), retry.Timeout(300*time.Second))
    			// check tag removed
    			if strings.Contains(httpMetricVal, removedTag) {
    				t.Errorf("failed to remove tag: %v", removedTag)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. bin/build_ztunnel.sh

    DOWNLOAD_COMMAND=""
    function set_download_command () {
      # Try curl.
      if command -v curl > /dev/null; then
        if curl --version | grep Protocols  | grep https > /dev/null; then
          DOWNLOAD_COMMAND="curl -fLSs --retry 5 --retry-delay 1 --retry-connrefused"
          return
        fi
        echo curl does not support https, will try wget for downloading files.
      else
        echo curl is not installed, will try wget for downloading files.
      fi
    
      # Try wget.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

        }
    
        @Override
        public Spec<Task> getFilter(SelectionContext context, ProjectState project, String taskName, boolean includeSubprojects) {
            if (includeSubprojects) {
                // Try to delay configuring all the subprojects
                configurer.configure(project.getMutableModel());
                if (taskNameResolver.tryFindUnqualifiedTaskCheaply(taskName, project.getMutableModel())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/context.go

    							if p.Port == port {
    								portExistsOnService = true
    								break
    							}
    						}
    						// If this is a managed gateway, the only possible explanation for no instances for the port
    						// is a delay in endpoint sync. Therefore, we don't want to warn/change the Programmed condition
    						// in this case as long as the port exists on the `Service` object.
    						if !isManaged || !portExistsOnService {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/support.go

    func (s *fakeFileSet) pos(file string, line, column int) token.Pos {
    	// TODO(mdempsky): Make use of column.
    
    	// Since we don't know the set of needed file positions, we reserve
    	// maxlines positions per file. We delay calling token.File.SetLines until
    	// all positions have been calculated (by way of fakeFileSet.setLines), so
    	// that we can avoid setting unnecessary lines. See also golang/go#46586.
    	f := s.files[file]
    	if f == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/cleanup.go

    		}
    
    		// Cleanup all secrets and configmaps - these are dynamically created by tests and/or istiod so they are not captured above
    		// This includes things like leader election locks (allowing next test to start without 30s delay),
    		// custom cacerts, custom kubeconfigs, etc.
    		// We avoid deleting the whole namespace since its extremely slow in Kubernetes (30-60s+)
    		if e := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).DeleteCollection(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. tests/integration/pilot/multi_version_revision_test.go

    								},
    								Retry: echo.Retry{
    									NoRetry: true,
    								},
    							})
    							return check.And(
    								check.NoError(),
    								check.OK()).Check(result, err)
    						}, retry.Delay(time.Millisecond*150))
    					})
    			}
    		}
    	}
    }
    
    // installRevisionOrFail takes an Istio version and installs a revisioned control plane running that version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top