Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for Child (0.12 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

        def sourceUsingLanguageFeatureFromJava17() {
            """
                // Sealed classes and interfaces are only available in Java 17
                public sealed interface Parent permits Parent.Child {
                    public static record Child(String name) implements Parent {}
                }
            """
        }
    
        def "source compatibility lower than compiler version does not allow accessing newer Java language features"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_ppc64x.s

    	RET
    
    // int64 clone(int32 flags, void *stk, M *mp, G *gp, void (*fn)(void));
    TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0
    	MOVW	flags+0(FP), R3
    	MOVD	stk+8(FP), R4
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	// Careful: Linux system call clobbers ???.
    	MOVD	mp+16(FP), R7
    	MOVD	gp+24(FP), R8
    	MOVD	fn+32(FP), R12
    
    	MOVD	R7, -8(R4)
    	MOVD	R8, -16(R4)
    	MOVD	R12, -24(R4)
    	MOVD	$1234, R7
    	MOVD	R7, -32(R4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		for _, outEdge := range cur.Out {
    			child := outEdge.Dest
    
    			delete(child.In, cur)
    			child.In[parent] = outEdge
    			parent.Out[child] = outEdge
    
    			outEdge.Src = parent
    			outEdge.Residual = true
    			// If the edge from the parent to the current node and the edge from the
    			// current node to the child are both inline, then this resulting residual
    			// edge should also be inline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    				FieldRef: fieldRef.Index(i).Child("expression").String(),
    				Warning:  results.String(),
    			})
    		}
    		// Note that MessageExpression is optional
    		if v.MessageExpression == "" {
    			continue
    		}
    		results = c.CheckExpression(ctx, v.MessageExpression)
    		if len(results) != 0 {
    			warnings = append(warnings, v1.ExpressionWarning{
    				FieldRef: fieldRef.Index(i).Child("messageExpression").String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/os/exec.go

    	p.state.CompareAndSwap(0, uint64(reason))
    }
    
    // ProcAttr holds the attributes that will be applied to a new process
    // started by StartProcess.
    type ProcAttr struct {
    	// If Dir is non-empty, the child changes into the directory before
    	// creating the process.
    	Dir string
    	// If Env is non-nil, it gives the environment variables for the
    	// new process in the form returned by Environ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            where:
            type << ProductionType.values()
        }
    
        def "producer task with a dependency in another build will run before destroyer tasks when ordered first (type: #type)"() {
            def foo = includedBuild('child').subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo')
            def cleanBar = bar.task('cleanBar').destroys('build/bar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/net/net_windows_test.go

    		// In child process.
    		c, err := Dial("tcp", envaddr)
    		if err != nil {
    			t.Fatal(err)
    		}
    		fmt.Printf("sleeping\n")
    		time.Sleep(time.Minute) // process will be killed here
    		c.Close()
    	}
    
    	ln, err := Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer ln.Close()
    
    	// Start child process that connects to our listener.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    	if len(c.UnhandledCriticalExtensions) > 0 {
    		return UnhandledCriticalExtension{}
    	}
    
    	if len(currentChain) > 0 {
    		child := currentChain[len(currentChain)-1]
    		if !bytes.Equal(child.RawIssuer, c.RawSubject) {
    			return CertificateInvalidError{c, NameMismatch, ""}
    		}
    	}
    
    	now := opts.CurrentTime
    	if now.IsZero() {
    		now = time.Now()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            then:
            1 * created.run()
            1 * listener.something("12")
            0 * _
        }
    
        def "automatically registers stateful listener when first event is broadcast from child"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            services.addProvider(new ServiceRegistrationProvider() {
                @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.api.Action;
    import org.gradle.api.GradleException;
    import org.gradle.api.JavaVersion;
    import org.gradle.api.internal.ClassPathProvider;
    import org.gradle.api.internal.classpath.ModuleRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top