Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Selections (0.14 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
    
                configurations.compileClasspath.resolutionStrategy.componentSelection.all { ComponentSelection selection ->
                   if (selection.candidate.module == 'bar' && selection.candidate.version in ['1.2', '1.1']) {
                       selection.reject("version \${selection.candidate.version} is bad")
                   }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    }
    
    // matchPodName returns selection predicate that matches any pod with name in the set.
    // Makes testing simpler.
    func matchPodName(names ...string) storage.SelectionPredicate {
    	// Note: even if pod name is a field, we have to use labels,
    	// because field selector doesn't support "IN" operator.
    	l, err := labels.NewRequirement("name", selection.In, names)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    					},
    				}),
    
    				// 21,22: process pending delete of good parent
    				// final state: good parent in graph with correct coordinates, good children remain, no pending deletions
    				processAttemptToDelete(1),
    				assertState(state{
    					clientActions: []string{
    						"get apps/v1, Resource=deployments ns=ns1 name=deployment1", // lookup of good parent, returns 200
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    						"c1": integerType,
    					}),
    					"d2": objectType(map[string]schema.Structural{
    						"e2": integerType,
    					}),
    				}),
    			}),
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			valid: []string{
    				"has(self.a.b)",
    				"!has(self.a.c)",
    				"!has(self.a.d)", // We treat null value fields the same as absent fields in CEL
    				"has(self.a1.b1.c1)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    is agnostic to where the origin is in the coordinate system and more
    generally is invariant to orthogonal transformations and translations
    of the coordinate system; thus translating or reflections of the coordinate
    system result in the same boxes being selected by the algorithm.
    The output of this operation is a set of integers indexing into the input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // The workspace's build list is the set of versions of all the
    // (transitive) dependency modules used to do builds in the workspace. go
    // work sync generates that build list using the Minimal Version Selection
    // algorithm, and then syncs those versions back to each of modules
    // specified in the workspace (with use directives).
    //
    // The syncing is done by sequentially upgrading each of the dependency
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

          - group: "" # core
            resources: ["nodes/status", "pods/status"]
        omitStages:
          - "RequestReceived"
    
      # deletecollection calls can be large, don't log responses for expected namespace deletions
      - level: Request
        users: ["system:serviceaccount:kube-system:namespace-controller"]
        verbs: ["deletecollection"]
        omitStages:
          - "RequestReceived"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    				{"0", v1.PodSucceeded},
    				{"5", v1.PodRunning},
    				{"6", v1.PodSucceeded},
    				{"7", v1.PodPending},
    				{"8", v1.PodFailed},
    			},
    			expectedCreations:     0, // only one of creations and deletions can happen in a sync
    			expectedSucceeded:     1,
    			expectedDeletions:     2,
    			expectedCompletedIdxs: "0",
    			expectedActive:        0,
    			expectedFailed:        0,
    			expectedPodPatches:    5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top