Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 369 for notexist (0.16 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

        }
    
        private Set<AccessRule> readAccessRules(Node node) {
            Set<AccessRule> accessRules = new LinkedHashSet<>();
            NodeList accessRulesNodes = (NodeList) node.get("accessrules");
            for (Object accessRulesNode : accessRulesNodes) {
                NodeList accessRuleNodes = (NodeList) ((Node) accessRulesNode).get("accessrule");
                for (Object accessRuleNode : accessRuleNodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/graph/GraphMutationTest.java

          while (graph.nodes().size() < NUM_NODES) {
            graph.addNode(gen.nextInt(NODE_POOL_SIZE));
          }
          ArrayList<Integer> nodeList = new ArrayList<>(graph.nodes());
          while (graph.edges().size() < NUM_EDGES) {
            graph.putEdge(getRandomElement(nodeList, gen), getRandomElement(nodeList, gen));
          }
          ArrayList<EndpointPair<Integer>> edgeList = new ArrayList<>(graph.edges());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 18 16:17:46 UTC 2017
    - 4.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/ResolutionExceptionSerializableCrossVersionSpec.groovy

        def "serializes exception when dependencies aren't resolved"() {
            when:
            file('build.gradle') << """
    dependencies {
        ${implementationConfiguration} 'commons-lang:commons-lang:10.0-NOTEXISTS'
    }
    """
            def customModel = withConnection { connection ->
                connection.model(CustomArtifactModel).get()
            }
            def failure = customModel.failure
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/reuse_git.txt

    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    ! stdout 'RepoSum'
    
    # go mod download vcstest/hello@nonexist should fail, still print origin info
    ! go mod download -x -json vcs-test.golang.org/git/hello.git@nonexist
    cp stdout hellononexist.json
    stdout '"Version": "nonexist"'
    stdout '"Error":.*unknown revision nonexist'
    stdout '"RepoSum": "r1:c0/9JCZ25lxoBiK3[+]3BhACU4giH49flcJmBynJ[+]Jvmc="'
    ! stdout '"(TagPrefix|TagSum|Ref|Hash)"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	var nodeList *v1.NodeList
    	logger := klog.FromContext(ctx)
    
    	// We must poll because apiserver might not be up. This error causes
    	// controller manager to restart.
    	if pollErr := wait.PollUntilContextTimeout(ctx, nodePollInterval, apiserverStartupGracePeriod, true, func(ctx context.Context) (bool, error) {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. pkg/scheduler/extender.go

    			nodeNameSlice = append(nodeNameSlice, node.Node().Name)
    		}
    		nodeNames = &nodeNameSlice
    	} else {
    		nodeList = &v1.NodeList{}
    		for _, node := range nodes {
    			nodeList.Items = append(nodeList.Items, *node.Node())
    		}
    	}
    
    	args = &extenderv1.ExtenderArgs{
    		Pod:       pod,
    		Nodes:     nodeList,
    		NodeNames: nodeNames,
    	}
    
    	if err := h.send(h.filterVerb, args, &result); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/testdata/err1.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    #cgo LDFLAGS: -L/nonexist
    
    void test() {
    	xxx;		// ERROR HERE
    }
    
    // Issue 8442.  Cgo output unhelpful error messages for
    // invalid C preambles.
    void issue8442foo(UNDEF*); // ERROR HERE
    */
    import "C"
    
    func main() {
    	C.test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 404 bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitXmlTestExecutionResult.groovy

                assert it["@name"] == testClass
            }
        }
    
        private Optional<String> getNodeText(NodeList nodeList) {
            assert nodeList.size() <= 1
            if (nodeList.isEmpty()) {
                return Optional.empty()
            } else {
                return Optional.of(nodeList.text())
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ModelBuilderSupport.java

    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class ModelBuilderSupport {
        protected List<Element> children(Element element, String childName) {
            List<Element> matches = new ArrayList<Element>();
            NodeList childNodes = element.getChildNodes();
            for (int i = 0; i < childNodes.getLength(); i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  10. pkg/registry/registrytest/node.go

    type NodeRegistry struct {
    	Err   error
    	Node  string
    	Nodes api.NodeList
    
    	sync.Mutex
    }
    
    // MakeNodeList constructs api.NodeList from list of node names and a NodeResource.
    func MakeNodeList(nodes []string, nodeResources api.ResourceList) *api.NodeList {
    	list := api.NodeList{
    		Items: make([]api.Node, len(nodes)),
    	}
    	for i := range nodes {
    		list.Items[i].Name = nodes[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top