Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 383 for createfing (0.14 sec)

  1. platforms/jvm/java-platform/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for creating dependency platforms for JVM projects"
    
    errorprone {
        disabledChecks.addAll(
            "InlineFormatString", // 1 occurrences
        )
    }
    
    dependencies {
        api(project(":core-api"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/transform/jar/before.pom

        <groupId>io.github.helpermethod</groupId>
        <artifactId>zip-forge</artifactId>
        <version>1.0.1</version>
        <name>zip-forge</name>
        <description>A tiny, formatter-friendly Java DSL for creating ZIP files.</description>
        <url>https://github.com/helpermethod/zip-forge</url>
        <licenses>
            <license>
                <name>The Apache License, Version 2.0</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                task buildInBuild(type:GradleBuild) {
                    dir = 'other'
                    startParameter.projectProperties['foo'] = true // not a String
                }
            """
            file('other/settings.gradle').createFile()
            file('other/build.gradle') << 'assert foo==true'
    
            when:
            run 'buildInBuild'
    
            then:
            noExceptionThrown()
        }
    
        def "can set build path"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. .github/workflows/mint.yml

              ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "erasure" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
          # FIXME: renable this back when we have a valid way to add deadlines for PUT()s (internode CreateFile)
          # - name: resiliency
          #   run: |
          #     ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "resiliency" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
          - name: The job must cleanup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveDanglingFileReferenceTest.kt

            val ktPsiFactory = KtPsiFactory.contextual(mainFile, markGenerated = true, eventSystemEnabled = true)
            val fakeKtFile = ktPsiFactory.createFile("fake.kt", mainFile.text)
    
            if (mainModule.testModule.directives.contains(Directives.COPY_RESOLUTION_MODE)) {
                fakeKtFile.originalFile = mainFile
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains the Application plugin, and its supporting classes.  This plugin is used for creating runnable Java application projects."
    
    dependencies {
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

    /**
     * An extension point to provide additional symbols for a KDoc reference. KDoc link resolution will use symbols returned by this EP
     * only if the real resolution was unsuccessful. You can use this EP by creating a class implementing this interface.
     * For example, let's assume that you want to return symbol `fun foo() = 3` for the following KDoc resolution:
     *
     * ```
     *   package com.example
     *   fun foo() = 3
     *   /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/kube.go

    		if err != nil {
    			return fmt.Errorf("failed creating intermediate CA for cluster %s: %v", c.Name(), err)
    		}
    
    		// Create the CA secret for this cluster. Istio will use these certs for its CA rather
    		// than its autogenerated self-signed root.
    		secret, err := clusterCA.NewIstioCASecret()
    		if err != nil {
    			return fmt.Errorf("failed creating intermediate CA secret for cluster %s: %v", c.Name(), err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. src/cmd/preprofile/main.go

    		return fmt.Errorf("error parsing profile: %w", err)
    	}
    
    	var out *os.File
    	if outputFile == "" {
    		out = os.Stdout
    	} else {
    		out, err = os.Create(outputFile)
    		if err != nil {
    			return fmt.Errorf("error creating output file: %w", err)
    		}
    		defer out.Close()
    	}
    
    	w := bufio.NewWriter(out)
    	if _, err := d.WriteTo(w); err != nil {
    		return fmt.Errorf("error writing output file: %w", err)
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top