Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for genrule (0.54 sec)

  1. pilot/pkg/networking/core/cluster.go

    					},
    				}
    			}
    
    			subsetClusters := cb.applyDestinationRule(defaultCluster, DefaultClusterMode, service, port,
    				clusterKey.endpointBuilder, clusterKey.destinationRule.GetRule(), clusterKey.serviceAccounts)
    
    			if patched := cp.patch(nil, defaultCluster.build()); patched != nil {
    				resources = append(resources, patched)
    				if features.EnableCDSCaching {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

    import org.junit.Assert.assertTrue
    import org.junit.Rule
    import org.junit.rules.TemporaryFolder
    import java.io.File
    import java.nio.file.Files
    
    
    abstract class AbstractBinaryCompatibilityTest {
    
        @get:Rule
        val tmpDir = TemporaryFolder()
    
        private
        val rootDir: File
            get() = tmpDir.root
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/first-steps.md

        Vous êtes libres d'utiliser chaque opération (méthode HTTP) comme vous le désirez.
    
        **FastAPI** n'impose pas de sens spécifique à chacune d'elle.
    
        Les informations qui sont présentées ici forment une directive générale, pas des obligations.
    
        Par exemple, quand l'on utilise **GraphQL**, toutes les actions sont effectuées en utilisant uniquement des opérations `POST`.
    
    ### Étape 4 : définir la **fonction de chemin**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

     componentSetDescript; private String source; public void ComponentDescriptor(); public void setSource(String); public String getSource(); public String getHumanReadableKey(); public String getAlias(); public void setAlias(String); public String getRole(); public void setRole(String); public String getRoleHint(); public void setRoleHint(String); public String getImplementation(); public void setImplementation(String); public String getVersion(); public void setVersion(String); public String getComponentType();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 35.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

            if (action == null) {
                return null;
            }
            final ConfigurableRules<DETAILS> rules = action.getRules();
            if (rules.isCacheable()) {
                return tryFromCache(key, action, detailsToResult, onCacheMiss, cachePolicy, rules);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Popcnt", asm: "I64Popcnt", argLength: 1, reg: gp11, typ: "Int64"}, // popcnt(arg0)
    	}
    
    	archs = append(archs, arch{
    		name:            "Wasm",
    		pkg:             "cmd/internal/obj/wasm",
    		genfile:         "../../wasm/ssa.go",
    		ops:             WasmOps,
    		blocks:          nil,
    		regnames:        regNamesWasm,
    		gpregmask:       gp,
    		fpregmask:       fp32 | fp64,
    		fp32regmask:     fp32,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

        /**
         * Returns the rules used by this collection.
         *
         * @return The rules, in the order they will be applied.
         */
        List<Rule> getRules();
    
        /**
         * {@inheritDoc}
         */
        @Override
        <S extends T> NamedDomainObjectCollection<S> withType(Class<S> type);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

                    "%s\n", sourceSetName, getConfigurationName(), currentUsageDesc);
            }
    
            private String getUsageExpectationMessage() {
                String expectedUsageDesc = UsageDescriber.describeRole(getRole());
                return String.format("Yet Gradle expected to create it with the usage(s):\n" +
                    "%s\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        public void setMojoConfiguration(PlexusConfiguration mojoConfiguration) {
            this.mojoConfiguration = mojoConfiguration;
        }
    
        /** {@inheritDoc} */
        public String getRole() {
            return isV4Api() ? "org.apache.maven.api.plugin.Mojo" : Mojo.ROLE;
        }
    
        /** {@inheritDoc} */
        public String getRoleHint() {
            return getId();
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            public DefaultExtractedRuleSource(List<ExtractedRuleDetails> rules) {
                this.rules = rules;
            }
    
            @VisibleForTesting // used in tests only
            public List<ExtractedModelRule> getRules() {
                return CollectionUtils.collect(rules, new InternalTransformer<ExtractedModelRule, ExtractedRuleDetails>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top