Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,264 for because3 (0.17 sec)

  1. pkg/registry/certificates/certificates/strategy_test.go

    					Conditions: []certapi.CertificateSigningRequestCondition{
    						{Type: certapi.CertificateDenied, Reason: "because1"},
    						{Type: certapi.CertificateApproved, Reason: "because2"},
    						{Type: certapi.CertificateDenied, Reason: "because3", LastUpdateTime: later, LastTransitionTime: later},
    						{Type: certapi.CertificateApproved, Reason: "because4", LastUpdateTime: later, LastTransitionTime: later},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/main/resources/CLMessages.properties

    ECL0017=Exception occurred, because {0}
    ECL0041={0}''s creation failure, because {1}
    ECL0040=IOException occurred, because {0}
    ECL0042=An illegal access was generated by {0}, because {1}
    ECL0043=The target which {0} invoked is illegal, because {1}
    ECL0044=Class not found, details are {0}
    ECL0048=The constructor of {0} for arguments({1}) not found
    ECL0049=The method({1}) of {0} not found
    ECL0050=Can not parse, because {0}
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/distributions-core/build.gradle.kts

        pluginsRuntimeOnly(project(":plugin-use")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
        pluginsRuntimeOnly(project(":dependency-management")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
        pluginsRuntimeOnly(project(":workers")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata/head.txt

    And some more text.
    
    # Not a heading,
    because text follows it.
    
    Because text precedes it,
    # not a heading.
    
    ## Not a heading either.
    
    -- gofmt --
    Some text.
    
    # An Old Heading
    
    Not An Old Heading.
    
    And some text.
    
    # A New Heading.
    
    And some more text.
    
    # Not a heading,
    because text follows it.
    
    Because text precedes it,
    # not a heading.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/build.gradle.kts

            because("For ApiMavenResolver. To use resolver transporters")
        }
        runtimeOnly(libs.mavenResolverTransportFile) {
            because("For ApiMavenResolver. To resolve file:// URLs")
        }
        runtimeOnly(libs.mavenResolverTransportHttp) {
            because("For ApiMavenResolver. To resolve http:// URLs")
        }
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/kotlin/build.gradle.kts

                useVersion(version.version)
                because(version.because)
            }
        }
    }
    
    data class DefaultVersion(val version: String, val because: String)
    
    fun findDefaultVersionInCatalog(group: String, name: String): DefaultVersion {
        //some custom logic that resolves the default version into a specific version
        return DefaultVersion(version = "1.0", because = "tested by QA")
    }
    // end::custom-versioning-scheme[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core-platform/build.gradle.kts

        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
        }
        runtime(project(":gradle-cli-main")) {
            because("This is the entry point of the `gradle` command.")
        }
        runtime(project(":daemon-main")) {
            because("This is the entry point of the Gradle daemon.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.googleApiClient)       { version { strictly("1.34.0"); because("our GCS version requires 1.34.0") }}
            api(libs.guava)                 { version { strictly("32.1.2-jre"); because("our Google API Client version requires at least 31.1-jre")  }}
            api(libs.googleHttpClientGson)  { version { strictly("1.42.2"); because("our Google API Client version requires 1.42.2")  }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        testFixturesApi(project(":base-services")) {
            because("test fixtures expose Action")
        }
        testFixturesApi(project(":base-services-groovy")) {
            because("test fixtures expose AndSpec")
        }
        testFixturesApi(project(":core-api")) {
            because("test fixtures expose Task")
        }
        testFixturesApi(project(":logging")) {
            because("test fixtures expose Logger")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. build-logic-commons/basics/build.gradle.kts

        implementation("com.google.guava:guava") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm-commons") {
            because("Used by class analysis")
        }
    
        implementation(kotlin("compiler-embeddable") as String) {
            because("Required by KotlinSourceParser")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
Back to top