Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for Types (0.06 sec)

  1. pilot/pkg/model/destination_rule.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/visibility"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/JavaRecordCodec.kt

            val clazz = readClass()
            val fields = clazz.relevantFields
    
            val args = readFields(fields)
            val types = fields.map { it.type }.toTypedArray()
            return try {
                clazz.getConstructor(*types).newInstance(*args.toTypedArray())
            } catch (ex: Exception) {
                throw IllegalStateException("Failed to create instance of ${clazz.name} with args $args", ex)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package implements support for types that are compatible with
     * Java Object Serialization.
     *
     * For more details, see:
     *
     * {@link org.gradle.internal.serialize.codecs.core.jos.JavaObjectSerializationCodec}
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 898 bytes
    - Viewed (0)
  4. subprojects/build-events/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Implementation of build event services and build event types (work item, tasks, tests, configuration, etc)"
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
        api(project(":build-operations"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":messaging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/software/signing/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-publishing"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/signing/**")
    }
    
    tasks {
        integTest {
            usesJavadocCodeSnippets = true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/jvm/ear/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/plugins/ear/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * Returns the file paths of all dependencies, regardless on which tool option those paths should be placed.
         * The returned list may contain a mix of Java class-path, Java module-path, and other types of path elements.
         * This collection has the same content than {@code getDependencies.values()} except that it does not contain
         * null elements.
         *
         * @return the paths of all dependencies
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. subprojects/core-api/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    integTest.usesJavadocCodeSnippets = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-state/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Types for build process and session state management"
    
    dependencies {
        api(projects.instrumentationAgentServices)
        api(projects.serviceProvider)
        api(project(":core"))
        api(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/software/platform-base/build.gradle.kts

    }
    
    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    integTest.usesJavadocCodeSnippets = true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top