Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for erator (0.19 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "operator": {
              "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
              "type": "string"
            },
            "values": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. src/reflect/value.go

    		v.mustBe(Map)
    	}
    	iter.m = v
    	iter.hiter = hiter{}
    }
    
    // MapRange returns a range iterator for a map.
    // It panics if v's Kind is not [Map].
    //
    // Call [MapIter.Next] to advance the iterator, and [MapIter.Key]/[MapIter.Value] to access each entry.
    // [MapIter.Next] returns false when the iterator is exhausted.
    // MapRange follows the same iteration semantics as a range statement.
    //
    // Example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    	cases := map[string]struct {
    		updateErr    error
    		wantRequeued bool
    	}{
    		"no error": {
    			wantRequeued: false,
    		},
    		"generic error": {
    			updateErr:    fmt.Errorf("update error"),
    			wantRequeued: true,
    		},
    		"conflict error": {
    			updateErr:    apierrors.NewConflict(schema.GroupResource{}, "", nil),
    			wantRequeued: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    wait, wait, wait Constructor Detail SelfDescribingValueI public SelfDescribingValueI(java.util.Iterator<T> values) Method Detail hasNext public boolean hasNext() Specified by: hasNext in interface java.util.Iterator<SelfDescribing> next public SelfDescribing next() Specified by: next in interface java.util.Iterator<SelfDescribing> remove public void remove() Specified by: remove in interface java.util.Iterator<SelfDescribing> Overview Package Class Use Tree Deprecated Index Help PREV CLASS NEXT CLASS...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val receiverExpression: KtExpression
            val operator: String
            val argumentExpression: KtExpression?
        }
    
        interface UnsafeOperatorCall : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = UnsafeOperatorCall::class
            val receiverType: KaType
            val receiverExpression: KtExpression
            val operator: String
            val argumentExpression: KtExpression?
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if len(m.Values) > 0 {
    		for iNdEx := len(m.Values) - 1; iNdEx >= 0; iNdEx-- {
    			i = encodeVarintGenerated(dAtA, i, uint64(m.Values[iNdEx]))
    			i--
    			dAtA[i] = 0x18
    		}
    	}
    	i -= len(m.Operator)
    	copy(dAtA[i:], m.Operator)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Operator)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  7. go.sum

    github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
    github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
    github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
    github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.",
                "type": "string"
              },
              "operator": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

            .body("c")
            .build(),
        )
        val urlC = server.url("/c")
        assertThat(get(urlC).body.string()).isEqualTo("c")
    
        // Confirm the iterator returns those responses...
        val i: Iterator<String> = cache.urls()
        assertThat(i.hasNext()).isTrue()
        assertThat(i.next()).isEqualTo(urlA.toString())
        assertThat(i.hasNext()).isTrue()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__policy__v1_openapi.json

            "properties": {
              "key": {
                "default": "",
                "description": "key is the label key that the selector applies to.",
                "type": "string"
              },
              "operator": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top