Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 581 for for1 (0.06 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // If traversed before:
            //      If net exclusions for this node have not changed, ignore
            //      If net exclusions for this node have changed, remove previous state and traverse outgoing edges again.
    
            if (!component.isSelected()) {
                LOGGER.debug("version for {} is not selected. ignoring.", this);
                cleanupConstraints();
                return;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// list of init containers to keep.
    	initContainerNames := sets.New[string]()
    	for _, container := range pod.Spec.InitContainers {
    		initContainerNames.Insert(container.Name)
    	}
    	for name := range initContainerNames {
    		count := 0
    		for _, status := range podStatus.ContainerStatuses {
    			if status.Name != name ||
    				(status.State != kubecontainer.ContainerStateExited &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// through the TLS handshake for the leaf certificate, if any.
    	SignedCertificateTimestamps [][]byte
    
    	// OCSPResponse is a stapled Online Certificate Status Protocol (OCSP)
    	// response provided by the peer for the leaf certificate, if any.
    	OCSPResponse []byte
    
    	// TLSUnique contains the "tls-unique" channel binding value (see RFC 5929,
    	// Section 3). This value will be nil for TLS 1.3 connections and for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                if (parentData == null) {
                    currentData = superData;
                } else if (!parentIds.add(parentData.getId())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.getId());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// For subresources, this may have a different value, for example: Scale".
    	Group string `json:"group,omitempty" protobuf:"bytes,8,opt,name=group"`
    	// version is the preferred version of the resource.  Empty implies the version of the containing resource list
    	// For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	for _, obj := range r.HTTPRoute {
    		buildHTTPVirtualServices(r, obj, gatewayRoutes, meshRoutes)
    	}
    	for _, obj := range r.GRPCRoute {
    		buildGRPCVirtualServices(r, obj, gatewayRoutes, meshRoutes)
    	}
    	for _, vsByHost := range gatewayRoutes {
    		for _, vsConfig := range vsByHost {
    			result = append(result, *vsConfig)
    		}
    	}
    	for _, vsByHost := range meshRoutes {
    		for _, vsConfig := range vsByHost {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    		avoidSamples := make([]uintptr, len(avoid))
    
    		for _, sample := range p.Sample {
    			count := uintptr(sample.Value[0])
    			for i, spec := range need {
    				if matches(spec, count, sample.Location, sample.Label) {
    					have[i] += count
    				}
    			}
    			for i, name := range avoid {
    				for _, loc := range sample.Location {
    					for _, line := range loc.Line {
    						if strings.Contains(line.Function.Name, name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    debugging version control commands when a module is downloaded directly
    from a repository.
    
    For more about build flags, see 'go help build'.
    
    For more about modules, see https://golang.org/ref/mod.
    
    For more about using 'go get' to update the minimum Go version and
    suggested Go toolchain, see https://go.dev/doc/toolchain.
    
    For more about specifying packages, see 'go help packages'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    It is common for CI servers and other tooling to observe test results via these XML files.
    
    By default, the files are written to `layout.buildDirectory.dir("test-results/$testTaskName")` with a file per test class.
    The location can be changed for all test tasks of a project, or individually per test task.
    
    .Changing JUnit XML results location for all test tasks
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    		},
    	}
    	for _, c := range testCases {
    		for _, r := range c.rss {
    			informers.Apps().V1().ReplicaSets().Informer().GetIndexer().Add(r)
    		}
    		actualRSs := manager.getReplicaSetsWithSameController(logger, c.rs)
    		var actualRSNames, expectedRSNames []string
    		for _, r := range actualRSs {
    			actualRSNames = append(actualRSNames, r.Name)
    		}
    		for _, r := range c.expectedRSs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top