Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 9,574 for kindOf (0.36 sec)

  1. android/guava-tests/test/com/google/common/collect/ComparisonChainTest.java

                    .compare(Boolean.TRUE, true)
                    .compare(Boolean.TRUE, Boolean.TRUE)
                    .result())
            .isEqualTo(0);
      }
    
      public void testDegenerate() {
        // kinda bogus, but who cares?
        assertThat(ComparisonChain.start().result()).isEqualTo(0);
      }
    
      public void testOneEqual() {
        assertThat(ComparisonChain.start().compare("a", "a").result()).isEqualTo(0);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/log/slog/value_test.go

    		if !got.Equal(test.want) {
    			t.Errorf("%v (%[1]T): got %v (kind %s), want %v (kind %s)",
    				test.in, got, got.Kind(), test.want, test.want.Kind())
    		}
    	}
    }
    
    func TestValueAny(t *testing.T) {
    	for _, want := range []any{
    		nil,
    		LevelDebug + 100,
    		time.UTC, // time.Locations treated specially...
    		KindBool, // ...as are Kinds
    		[]Attr{Int("a", 1)},
    		int64(2),
    		uint64(3),
    		true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

            return null;
        }
    
        protected QueryBuilder buildQuery() {
            final BoolQueryBuilder queryBuilder = QueryBuilders.boolQuery();
            queryBuilder.must(QueryBuilders.termQuery(FieldNames.KINDS, SuggestItem.Kind.QUERY.toString()));
            queryBuilder.mustNot(QueryBuilders.existsQuery(FieldNames.READING_PREFIX + "1"));
            queryBuilder.must(QueryBuilders.rangeQuery(FieldNames.QUERY_FREQ).gte(queryFreqThreshold));
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/symkind.go

    	objabi.SCOVERAGE_COUNTER:       SCOVERAGE_COUNTER,
    	objabi.SCOVERAGE_AUXVAR:        SCOVERAGE_AUXVAR,
    	objabi.SSEHUNWINDINFO:          SSEHUNWINDINFO,
    }
    
    // ReadOnly are the symbol kinds that form read-only sections. In some
    // cases, if they will require relocations, they are transformed into
    // rel-ro sections using relROMap.
    var ReadOnly = []SymKind{
    	STYPE,
    	SSTRING,
    	SGOSTRING,
    	SGOFUNC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	// version (for when the inevitable meta/v2 group emerges).
    	MetaGroupVersion *schema.GroupVersion
    
    	// RootScopedKinds are the root scoped kinds for the primary GroupVersion
    	RootScopedKinds sets.String
    
    	// Serializer is used to determine how to convert responses from API methods into bytes to send over
    	// the wire.
    	Serializer     runtime.NegotiatedSerializer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // responseKind describes the group, version, and kind of the serialization schema for the object type this endpoint typically returns.
      // Some subresources do not return normal resources, these will have null or empty return types.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // acceptedTypes describes the kinds that this endpoint accepts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authentication/v1/generated.proto

    option go_package = "k8s.io/api/authentication/v1";
    
    // BoundObjectReference is a reference to an object that a token is bound to.
    message BoundObjectReference {
      // Kind of the referent. Valid kinds are 'Pod' and 'Secret'.
      // +optional
      optional string kind = 1;
    
      // API version of the referent.
      // +optional
      optional string apiVersion = 2;
    
      // Name of the referent.
      // +optional
      optional string name = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // responseKind describes the group, version, and kind of the serialization schema for the object type this endpoint typically returns.
      // Some subresources do not return normal resources, these will have null return types.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // acceptedTypes describes the kinds that this endpoint accepts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/apis.go

    			klog.Infof("API group %q is not enabled, skipping.", groupName)
    			continue
    		}
    
    		// Remove resources that serving kinds that are removed.
    		// We do this here so that we don't accidentally serve versions without resources or openapi information that for kinds we don't serve.
    		// This is a spot above the construction of individual storage handlers so that no sig accidentally forgets to check.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlocksCheck.kt

                    specialBlockKind != null -> when (seenBlock) {
                        null -> seenBlock = specialBlockKind
                        specialBlockKind -> duplicates += node
                        else -> error("unexpected mixed kinds of special blocks in one resolved DOM")
                    }
    
                    seenBlock == null -> outOfOrderNodes += node
                }
            }
            return seenBlock?.let { seen ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top