Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for genrule (0.14 sec)

  1. src/time/zoneinfo.go

    	if s[0] != ',' && s[0] != ';' {
    		return "", 0, 0, 0, false, false
    	}
    	s = s[1:]
    
    	var startRule, endRule rule
    	startRule, s, ok = tzsetRule(s)
    	if !ok || len(s) == 0 || s[0] != ',' {
    		return "", 0, 0, 0, false, false
    	}
    	s = s[1:]
    	endRule, s, ok = tzsetRule(s)
    	if !ok || len(s) > 0 {
    		return "", 0, 0, 0, false, false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/NamedDomainObjectContainerDelegate.kt

            delegate.register(name)
    
        override fun iterator(): MutableIterator<T> =
            delegate.iterator()
    
        override fun getNamer(): Namer<T> =
            delegate.namer
    
        override fun getRules(): MutableList<Rule> =
            delegate.rules
    
        override fun named(name: String): NamedDomainObjectProvider<T> =
            delegate.named(name)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. plugin/pkg/auth/authorizer/rbac/rbac.go

    		rbacv1helpers.NonResourceURLMatches(rule, requestAttributes.GetPath())
    }
    
    type RoleGetter struct {
    	Lister rbaclisters.RoleLister
    }
    
    func (g *RoleGetter) GetRole(namespace, name string) (*rbacv1.Role, error) {
    	return g.Lister.Roles(namespace).Get(name)
    }
    
    type RoleBindingLister struct {
    	Lister rbaclisters.RoleBindingLister
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top