Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for genrule (0.2 sec)

  1. docs/fr/docs/deployment/manually.md

    Lorsqu'on se réfère à la machine distante, il est courant de l'appeler **serveur**, mais aussi **machine**, **VM** (machine virtuelle), **nœud**. Tout cela fait référence à un type de machine distante, exécutant  Linux, en règle générale, sur laquelle vous exécutez des programmes.
    
    
    ## Installer le programme serveur
    
    Vous pouvez installer un serveur compatible ASGI avec :
    
    === "Uvicorn"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                responseData.setSessionId(crawlingInfoId);
    
                final RuleManager ruleManager = SingletonLaContainer.getComponent(RuleManager.class);
                final Rule rule = ruleManager.getRule(responseData);
                if (rule == null) {
                    throw new CrawlingAccessException("No url rule for " + url);
                }
                responseData.setRuleId(rule.getRuleId());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

            }
            return true;
        }
    
        protected void processResponse(final UrlQueue<?> urlQueue, final ResponseData responseData) {
            // get a rule
            final Rule rule = crawlerContext.ruleManager.getRule(responseData);
            if (rule == null) {
                log(logHelper, LogType.NO_RULE, crawlerContext, urlQueue, responseData);
            } else {
                responseData.setRuleId(rule.getRuleId());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. pkg/apis/rbac/v1/helpers.go

    // out in a literal and allows us to perform some basic checking during construction
    type PolicyRuleBuilder struct {
    	PolicyRule rbacv1.PolicyRule `protobuf:"bytes,1,opt,name=policyRule"`
    }
    
    func NewRule(verbs ...string) *PolicyRuleBuilder {
    	return &PolicyRuleBuilder{
    		PolicyRule: rbacv1.PolicyRule{Verbs: verbs},
    	}
    }
    
    func (r *PolicyRuleBuilder) Groups(groups ...string) *PolicyRuleBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/networkfilter.go

    	var destinationRule *networking.DestinationRule
    	if service != nil {
    		destinationRule = CastDestinationRule(node.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, node, service.Hostname).GetRule())
    	}
    	if len(routes) == 1 {
    		clusterName := istioroute.GetDestinationCluster(routes[0].Destination, service, port.Port)
    		statPrefix := clusterName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/TaskReportTask.java

            for (RuleDetails rule : reportModel.rules) {
                renderer.addRule(rule);
            }
        }
    
        private List<RuleDetails> ruleDetailsFor(Project project) {
            return project.getTasks().getRules().stream().map(rule -> RuleDetails.of(rule.getDescription())).collect(Collectors.toList());
        }
    
        private DefaultGroupTaskReportModel taskReportModelFor(Project project, boolean detail) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            }
            if (getRichReport().isPresent()) {
                RichReport richReport = getRichReport().get();
                for (RuleConfiguration configuration : richReport.getRules().getOrElse(Collections.emptyList())) {
                    addClasspathFor(configuration.getRuleClass(), classpath);
                }
            }
            classpath.addAll(additionalJapicmpClasspath.getFiles());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    	// choice of inbound cluster is arbitrary. So the connection pool settings may not apply cleanly.
    	cfg := proxy.SidecarScope.DestinationRule(model.TrafficDirectionInbound, proxy, instance.Service.Hostname).GetRule()
    	if cfg != nil {
    		destinationRule := CastDestinationRule(cfg)
    		opts.isDrWithSelector = destinationRule.GetWorkloadSelector() != nil
    		if destinationRule.TrafficPolicy != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/TaskContainerDelegate.kt

            delegate.named(name, type, configurationAction)
    
        override fun getNamer(): Namer<Task> =
            delegate.namer
    
        override fun getRules(): MutableList<Rule> =
            delegate.rules
    
        override fun getCollectionSchema(): NamedDomainObjectCollectionSchema =
            delegate.collectionSchema
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/AbstractModuleDependency.java

                validateMutation();
            }
            return this;
        }
    
        @Override
        public Set<ExcludeRule> getExcludeRules() {
            return excludeRuleContainer.getRules();
        }
    
        private void setExcludeRuleContainer(DefaultExcludeRuleContainer excludeRuleContainer) {
            this.excludeRuleContainer = excludeRuleContainer;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top