Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,840 for rparenth (0.2 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactory.java

                }
            }
            return urls;
        }
    
        private ClassLoader createClassLoaderForClassPath(String name, List<? extends ClassLoader> parents, List<URL> classpath) {
            if (parents.size() != 1) {
                throw new IllegalStateException("Expected exactly one parent ClassLoader");
            }
    
            // convert the file urls to cached jar files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tests/associations_belongs_to_test.go

    		Logo: "updated logo",
    	}); err != nil {
    		t.Errorf("failed to replace item parent, got error: %v", err)
    	}
    
    	var parents []ItemParent
    	if err := tx.Find(&parents).Error; err != nil {
    		t.Errorf("failed to find item parent, got error: %v", err)
    	}
    	if len(parents) != 1 {
    		t.Errorf("expected %d parents, got %d", 1, len(parents))
    	}
    
    	// test delete
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. cmd/os-reliable.go

    	}
    
    	return nil
    }
    
    // Reliably retries os.MkdirAll if for some reason os.MkdirAll returns
    // syscall.ENOENT (parent does not exist).
    func reliableMkdirAll(dirPath string, mode os.FileMode, baseDir string) (err error) {
    	i := 0
    	for {
    		// Creates all the parent directories, with mode 0777 mkdir honors system umask.
    		if err = osMkdirAll(dirPath, mode, baseDir); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conditions.go

    		})
    	}
    	// Ensure output is deterministic.
    	// TODO: will we fight over other controllers doing similar (but not identical) ordering?
    	sort.SliceStable(parents, func(i, j int) bool {
    		return parentRefString(parents[i].ParentRef) > parentRefString(parents[j].ParentRef)
    	})
    	return parents
    }
    
    type ParentErrorReason string
    
    const (
    	ParentErrorNotAccepted       = ParentErrorReason(k8s.RouteReasonNoMatchingParent)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-precedence.status.yaml.golden

    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: hostnames matched parent hostname "*.domain.example", but namespace
            "default" is not allowed by the parent
          reason: NotAllowedByListeners
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

        private static ServiceProvider setupParentServices(ServiceRegistry[] parents) {
            ServiceProvider parentServices;
            if (parents.length == 1) {
                parentServices = toParentServices(parents[0]);
            } else {
                ServiceProvider[] parentServiceProviders = new ServiceProvider[parents.length];
                for (int i = 0; i < parents.length; i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/passthrough.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-passthrough
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

                Object parentId = event.getParentId();
                if (parentId == null) {
                    //if we don't know the parent we will use the top suite
                    //this way we always have and id to attach logging events for
                    parentId = rootId;
                }
                parents.put(test.getId(), parentId);
            }
        }
    
        @Override
        public void completed(Object testId, TestCompleteEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationAncestryTracker.java

                return Optional.of(value);
            }
            return findClosestExistingAncestor(parents.get(id), lookupFunction);
        }
    
        @Override
        public void started(BuildOperationDescriptor buildOperation, OperationStartEvent startEvent) {
            if (buildOperation.getParentId() != null) {
                parents.put(buildOperation.getId(), buildOperation.getParentId());
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http-not-selected
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: no hostnames matched parent hostname "*.domain.example"
          reason: NoMatchingListenerHostname
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top