Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for child6 (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("files: [dir1.classes.dir, lib1.jar.txt]") == 2
    
            output.count("Transformed") == 0
    
            when:
            file("lib/lib1.jar").text = "abc"
            file("lib/dir1.classes").file("child2").createFile()
    
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files: [dir1.classes.dir, lib1.jar.txt]") == 2
    
            output.count("Transformed") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			fieldPath:       ".a['bbb.c']",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			validFieldPath:  path.Child("a").Child("bbb.c"),
    		},
    		{
    			name:            "Valid map key",
    			fieldPath:       ".foo.subAdd",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			validFieldPath:  path.Child("foo").Key("subAdd"),
    		},
    		{
    			name:            "Valid map key",
    			fieldPath:       ".foo['subAdd']",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("image service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    
    	for _, span := range runtimeServiceSpans {
    		assert.Equal(t, span.Parent.SpanID(), rootSpan.SpanContext.SpanID(), fmt.Sprintf("runtime service span %s %s should be child of root span", span.Name, span.Parent.SpanID()))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	}()
    
    	// Wait for the server in the child process to respond and tell us
    	// its listening address, once it's started listening:
    	bs := bufio.NewScanner(stdout)
    	if !bs.Scan() {
    		b.Fatalf("failed to read listening URL from child: %v", bs.Err())
    	}
    	url := "http://" + strings.TrimSpace(bs.Text()) + "/"
    	if _, err := getNoBody(url); err != nil {
    		b.Fatalf("initial probe of child process failed: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top