Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 402 for comp (0.03 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/report-aggregation/src/main/kotlin/com.example.report-aggregation.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.service-conventions.gradle.kts

    // Define conventions for service projects this organization.
    // Service projects need to use the organization's Java conventions and pass some additional checks
    
    // tag::plugins[]
    plugins {
        id("com.myorg.java-conventions")
    }
    // end::plugins[]
    
    testing {
        suites {
            val test by getting(JvmTestSuite::class) {
                useJUnitJupiter("5.7.1")
            }
    
            val integrationTest by registering(JvmTestSuite::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pkg/log/logr.go

    // threshold is fairly arbitrary based on inspection of Kubernetes usage and
    // https://kubernetes.io/docs/reference/kubectl/cheatsheet/#kubectl-output-verbosity-and-debugging.
    // Errors are passed through as errors.
    // Zap does come with its own logr implementation, but we have chosen to re-implement to allow usage of
    // our Scope - in particular, this allows changing the logging level of kubernetes logs by users.
    type zapLogger struct {
    	l *Scope
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.java-conventions.gradle.kts

    // tag::apply-external-plugin[]
    plugins {
        java
        checkstyle
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id("com.github.spotbugs")
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/java-library/src/main/kotlin/com.example.java-library.gradle.kts

    plugins {
        id("com.example.commons")
        id("java-library")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 65 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/src/main/groovy/com.example.spring-boot-application.gradle

    plugins {
        id('com.example.commons')
        id('org.springframework.boot')
    }
    
    dependencies {
        implementation('org.springframework.boot:spring-boot-starter-web')
        implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.library-conventions.gradle.kts

    // tag::plugins[]
    plugins {
        `java-library`
        `maven-publish`
        id("com.myorg.java-conventions")
    }
    // end::plugins[]
    
    // Projects have the 'com.myorg' group by convention
    group = "com.myorg"
    
    publishing {
        publications {
            create<MavenPublication>("library") {
                from(components["java"])
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 996 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/android-application/src/main/kotlin/com.example.android-application.gradle.kts

    plugins {
        id("com.android.application")
        id("org.jetbrains.kotlin.android")
    }
    
    group = "com.example.myproduct"
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    android {
        compileSdkVersion(28)
        defaultConfig {
            minSdkVersion(24)
            targetSdkVersion(28)
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_1_8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 654 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/README.md

    ## Where does it come from?
    
    `apiextensions-apiserver` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apiextensions-apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 06:41:15 UTC 2023
    - 742 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    			return c > 0 // smaller args come later
    		}
    	}
    	if c := x.Uses - y.Uses; c != 0 {
    		return c > 0 // smaller uses come later
    	}
    	// These comparisons are fairly arbitrary.
    	// The goal here is stability in the face
    	// of unrelated changes elsewhere in the compiler.
    	if c := x.AuxInt - y.AuxInt; c != 0 {
    		return c < 0
    	}
    	if cmp := x.Type.Compare(y.Type); cmp != types.CMPeq {
    		return cmp == types.CMPlt
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top