Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,128 for ExtensionB (0.21 sec)

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

    	envoyFilterPatches := push.EnvoyFilters(proxy)
    	extensions := envoyfilter.InsertedExtensionConfigurations(envoyFilterPatches, extensionConfigNames)
    	wasmPlugins := push.WasmPluginsByName(proxy, parseExtensionName(extensionConfigNames))
    	extensions = append(extensions, extension.InsertedExtensionConfigurations(wasmPlugins, extensionConfigNames, pullSecrets)...)
    	return extensions
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/internal/scripts/DefaultScriptFileResolver.java

            this.scriptFileResolvedListener = null;
        }
    
        @Override
        public File resolveScriptFile(File dir, String basename) {
            for (String extension : EXTENSIONS) {
                File candidate = new File(dir, basename + extension);
                if (isCandidateFile(candidate)) {
                    return candidate;
                }
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

            outputContains("present failed with: Cannot query the value of extension 'thing' property 'prop' because configuration of root project 'broken' has not completed yet.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtraPropertiesExtensionTest.groovy

            given:
            extension.m0 = { -> "m0" }
            extension.m1 = { it }
            extension.m2 = { String a1, String a2 -> "$a1 $a2" }
            
            expect:
            extension.m0() == "m0"
            extension.m1("foo") == "foo"
            extension.m2("foo", "bar") == "foo bar"
    
            when:
            extension.m0(1)
    
            then:
            thrown(MissingMethodException)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/mavenExtensions/some-thing/test-core/pom.xml

      </parent>
    
      <artifactId>test-core</artifactId>
      <name>test-core</name>
      <packaging>jar</packaging>
      <build>
        <extensions>
          <extension>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.0.7</version>
          </extension>
        </extensions>
      </build>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 683 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/parse.go

    // Script, Region, Variant, []Variant, Extension, []Extension or error. If a
    // Base, Script or Region or slice of type Variant or Extension is passed more
    // than once, the latter will overwrite the former. Variants and Extensions are
    // accumulated, but if two extensions of the same type are passed, the latter
    // will replace the former. For -u extensions, though, the key-type pairs are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX512PF         bool // Advanced vector extension 512 Prefetch Instructions
    	HasAVX512VL         bool // Advanced vector extension 512 Vector Length Extensions
    	HasAVX512BW         bool // Advanced vector extension 512 Byte and Word Instructions
    	HasAVX512DQ         bool // Advanced vector extension 512 Doubleword and Quadword Instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/customPlugins/customPluginWithConvention/kotlin/build.gradle.kts

            // Add the 'greeting' extension object
            val extension = project.extensions.create<GreetingPluginExtension>("greeting")
            extension.message.convention("Hello from GreetingPlugin")
            // Add a task that uses configuration from the extension object
            project.task("hello") {
                doLast {
                    println(extension.message.get())
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 588 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customPlugins/customPluginNoConvention/kotlin/build.gradle.kts

        override fun apply(project: Project) {
            // Add the 'greeting' extension object
            val extension = project.extensions.create<GreetingPluginExtension>("greeting")
            // Add a task that uses configuration from the extension object
            project.task("hello") {
                doLast {
                    println(extension.message.get())
                }
            }
        }
    }
    
    apply<GreetingPlugin>()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 608 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/customPlugins/customPluginWithConvention/groovy/build.gradle

        void apply(Project project) {
            // Add the 'greeting' extension object
            def extension = project.extensions.create('greeting', GreetingPluginExtension)
            extension.message.convention('Hello from GreetingPlugin')
            // Add a task that uses configuration from the extension object
            project.task('hello') {
                doLast {
                    println extension.message.get()
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 22:56:31 UTC 2024
    - 592 bytes
    - Viewed (0)
Back to top