Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for forList (0.17 sec)

  1. android/guava/src/com/google/common/graph/Traverser.java

       * node(s) to any node reachable from the start node(s), and has no paths from any start node to
       * any other start node, such as a tree or forest.
       *
       * <p>{@code forTree()} is especially useful (versus {@code forGraph()}) in cases where the data
       * structure being traversed is, in addition to being a tree/forest, also defined <a
       * href="https://github.com/google/guava/wiki/GraphsExplained#non-recursiveness">recursively</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/Traverser.java

       * node(s) to any node reachable from the start node(s), and has no paths from any start node to
       * any other start node, such as a tree or forest.
       *
       * <p>{@code forTree()} is especially useful (versus {@code forGraph()}) in cases where the data
       * structure being traversed is, in addition to being a tree/forest, also defined <a
       * href="https://github.com/google/guava/wiki/GraphsExplained#non-recursiveness">recursively</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/test.go

    	// Test package.
    	if len(p.TestGoFiles) > 0 || p.Name == "main" || cover != nil && cover.Local {
    		ptest = new(Package)
    		*ptest = *p
    		ptest.Error = ptestErr
    		ptest.Incomplete = incomplete
    		ptest.ForTest = p.ImportPath
    		ptest.GoFiles = nil
    		ptest.GoFiles = append(ptest.GoFiles, p.GoFiles...)
    		ptest.GoFiles = append(ptest.GoFiles, p.TestGoFiles...)
    		ptest.Target = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    						StatusReplicasPath: ".status.replicas",
    					},
    				},
    			},
    		},
    		Names: apiextensionsv1.CustomResourceDefinitionNames{
    			Plural:   "foos",
    			Singular: "foo",
    			Kind:     "Foo",
    			ListKind: "FooList",
    		},
    		Scope:                 apiextensionsv1.ClusterScoped,
    		PreserveUnknownFields: false,
    	},
    }
    
    const defaultingFooV1beta1Schema = `
    type: object
    properties:
      spec:
        type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/list/list.go

    		for _, p := range all {
    			if p.ForTest != "" || p.Internal.ForMain != "" {
    				new := p.Desc()
    				old[new] = p.ImportPath
    				p.ImportPath = new
    			}
    			p.DepOnly = !cmdline[p]
    		}
    		// Update import path lists to use new strings.
    		m := make(map[string]string)
    		for _, p := range all {
    			for _, p1 := range p.Internal.Imports {
    				if p1.ForTest != "" || p1.Internal.ForMain != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

        private final OutputEventListener listener;
        private final LogHeaderFormatter headerFormatter;
        private final boolean verbose;
    
        // Maintain a hierarchy of all progress operations in progress — heads up: this is a *forest*, not just 1 tree
        private final Map<OperationIdentifier, OperationState> operationsInProgress = new LinkedHashMap<OperationIdentifier, OperationState>();
    
        private Object lastRenderedBuildOpId;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    		KindUnreachable:     "Unreachable",
    		KindBody:            "Body",
    		KindForBody:         "ForBody",
    		KindForDone:         "ForDone",
    		KindForLoop:         "ForLoop",
    		KindForPost:         "ForPost",
    		KindIfDone:          "IfDone",
    		KindIfElse:          "IfElse",
    		KindIfThen:          "IfThen",
    		KindLabel:           "Label",
    		KindRangeBody:       "RangeBody",
    		KindRangeDone:       "RangeDone",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/poset.go

    // for instance if A<B<C, calling SetOrder for C<A will fail returning false; also
    // calling SetEqual for C==A will fail.
    //
    // poset is implemented as a forest of DAGs; in each DAG, if there is a path (directed)
    // from node A to B, it means that A<B (or A<=B). Equality is represented by mapping
    // two SSA values to the same DAG node; when a new equality relation is recorded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    kind: CustomResourceDefinition
    metadata:
      name: foos.tests.example.com
    spec:
      group: tests.example.com
      version: v1beta1
      names:
        plural: foos
        singular: foo
        kind: Foo
        listKind: Foolist
      scope: Cluster
      versions:
      - name: v1beta1
        served: true
        storage: true
        schema:
          openAPIV3Schema:
            type: object
            properties:
              items-no-type:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    					Versions: []apiextensions.CustomResourceDefinitionVersion{{Name: "v1", Storage: true, Served: true}},
    					Names:    apiextensions.CustomResourceDefinitionNames{Plural: "foos", Singular: "foo", Kind: "Foo", ListKind: "FooList"},
    					Validation: &apiextensions.CustomResourceValidation{
    						OpenAPIV3Schema: &apiextensions.JSONSchemaProps{Type: "object", XPreserveUnknownFields: pointer.BoolPtr(true)},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
Back to top