Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 499 for plan (0.05 sec)

  1. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

            // For tests in default method of interface,
            // we might not be able to get the implementation class directly.
            // In this case, we need to retrieve test plan to get the real implementation class.
            TestIdentifier current = testIdentifier;
            while (current != null) {
                if (isTestClassIdentifier(current)) {
                    return current;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    4. [[task_configuration_avoidance_guideline_validate_build_logic]] **Ensure a good plan is established for validating the build logic.** +
    Usually, a simple `build` task invocation should do the trick to validate your build logic.
    However, some builds may need additional verification — understand the behavior of your build and make sure you have a good verification plan.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. docs/tr/docs/features.md

    * **WebSocket** desteği.
    * **GraphQL** desteği.
    * Kullanım halinde arka plan işlevleri.
    * Başlatma ve kapatma eventleri(startup and shutdown).
    * Test sunucusu HTTPX üzerine kurulu.
    * **CORS**, GZip, Static dosyalar, Streaming responseları.
    * **Session and Cookie** desteği.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.internal.cc.base.serialize.service
    import org.gradle.internal.cc.base.serialize.withGradleIsolate
    import org.gradle.execution.plan.Node
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.initialization.BuildIdentifiedProgressDetails
    import org.gradle.initialization.BuildStructureOperationProject
    import org.gradle.initialization.GradlePropertiesController
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. doc/asm.html

    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    If you plan to write assembly language, you should read that document although much of it is Plan 9-specific.
    The current document provides a summary of the syntax and the differences with
    what is explained in that document, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  6. src/net/net_test.go

    	defer ss.Close()
    
    	_, err = ss.Read([]byte{0})
    	if err == nil {
    		t.Fatal("Read succeeded unexpectedly")
    	} else if err == io.EOF {
    		// This happens on Plan 9, but for some reason (prior to CL 385314) it was
    		// accepted everywhere else too.
    		if runtime.GOOS == "plan9" {
    			return
    		}
    		t.Fatal("Read unexpectedly returned io.EOF after socket was abruptly closed")
    	}
    	if ne, ok := err.(Error); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/path-params.md

    De la même façon, il existe bien d'autres outils compatibles, y compris des outils de génération de code
    pour de nombreux langages.
    
    ## Pydantic
    
    Toute la validation de données est effectué en arrière-plan avec <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a>,
    dont vous bénéficierez de tous les avantages. Vous savez donc que vous êtes entre de bonnes mains.
    
    ## L'ordre importe
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    func (in *UpgradeConfiguration) DeepCopyInto(out *UpgradeConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.Apply.DeepCopyInto(&out.Apply)
    	out.Diff = in.Diff
    	in.Node.DeepCopyInto(&out.Node)
    	in.Plan.DeepCopyInto(&out.Plan)
    	if in.Timeouts != nil {
    		in, out := &in.Timeouts, &out.Timeouts
    		*out = new(Timeouts)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    		if err != nil {
    			env = os.Environ()
    			// Note that the non-nil err is preserved despite env being overridden.
    		}
    
    		if c.Dir != "" {
    			switch runtime.GOOS {
    			case "windows", "plan9":
    				// Windows and Plan 9 do not use the PWD variable, so we don't need to
    				// keep it accurate.
    			default:
    				// On POSIX platforms, PWD represents “an absolute pathname of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *UpgradeConfiguration) DeepCopyInto(out *UpgradeConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.Apply.DeepCopyInto(&out.Apply)
    	out.Diff = in.Diff
    	in.Node.DeepCopyInto(&out.Node)
    	in.Plan.DeepCopyInto(&out.Plan)
    	if in.Timeouts != nil {
    		in, out := &in.Timeouts, &out.Timeouts
    		*out = new(Timeouts)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top