Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,073 for parens (0.14 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. pilot/pkg/config/kube/gateway/conditions.go

    		if r.ControllerName != k8s.GatewayController(features.ManagedGatewayController) {
    			// We don't own this status, so keep it around
    			parents = append(parents, r)
    		}
    	}
    	// Collect all of our unique parent references. There may be multiple when we have a route without section name,
    	// but reference a parent with multiple sections.
    	// While we process these internally for-each sectionName, in the status we are just supposed to report one merged entry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            DefaultResolvedDependency parent = new DefaultResolvedDependency("someConfiguration", newId("someGroup", "parent", "someVersion"), buildOperationProcessor)
            resolvedDependency.getParents().add(parent)
    
            then:
            resolvedDependency.getArtifacts(parent).empty
        }
    
        def getParentArtifactsWithParentWithoutParentArtifacts() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        @Override
        List<BuildOperationRecord> parentsOf(BuildOperationRecord child) {
            def parents = []
            def parentId = child.parentId
            while (parentId != null) {
                def parent = operations.records.get(parentId)
                parents.add(0, parent)
                parentId = parent.parentId
            }
            return parents
        }
    
        @Override
        void none(Pattern displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/os/path.go

    		i--
    	}
    	if i < 0 {
    		i = 0
    	}
    
    	// If there is a parent directory, and it is not the volume name,
    	// recurse to ensure parent directory exists.
    	if parent := path[:i]; len(parent) > len(filepathlite.VolumeName(path)) {
    		err = MkdirAll(parent, perm)
    		if err != nil {
    			return err
    		}
    	}
    
    	// Parent now exists; invoke Mkdir and use its result.
    	err = Mkdir(path, perm)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/crypto/elliptic/params.go

    		return specific.ScalarBaseMult(k)
    	}
    
    	return curve.ScalarMult(curve.Gx, curve.Gy, k)
    }
    
    func matchesSpecificCurve(params *CurveParams) (Curve, bool) {
    	for _, c := range []Curve{p224, p256, p384, p521} {
    		if params == c.Params() {
    			return c, true
    		}
    	}
    	return nil, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. fastapi/params.py

    Sebastián Ramírez <******@****.***> 1713469257 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top