Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 379 for createfing (0.21 sec)

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. internal/ioutil/ioutil_test.go

    			t.Errorf("Case %d: Got wrong result: %v", i, string(b))
    		}
    	}
    }
    
    func TestSameFile(t *testing.T) {
    	f, err := os.CreateTemp("", "")
    	if err != nil {
    		t.Errorf("Error creating tmp file: %v", err)
    	}
    	tmpFile := f.Name()
    	f.Close()
    	defer os.Remove(f.Name())
    	fi1, err := os.Stat(tmpFile)
    	if err != nil {
    		t.Fatalf("Error Stat(): %v", err)
    	}
    	fi2, err := os.Stat(tmpFile)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/os/os_windows_test.go

    	// Create a file whose name contains unpaired surrogates.
    	// Use syscall.CreateFile instead of os.Create to simulate a file that is created by
    	// a non-Go program so the file name hasn't gone through syscall.UTF16FromString.
    	dirw := utf16.Encode([]rune(dir))
    	pathw := append(dirw, namew...)
    	fd, err := syscall.CreateFile(&pathw[0], syscall.GENERIC_ALL, 0, nil, syscall.CREATE_NEW, 0, 0)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top