Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,359 for kindOf (0.31 sec)

  1. src/internal/godebug/godebug_test.go

    	metrics.Read(m[:])
    	if kind := m[0].Value.Kind(); kind != metrics.KindUint64 {
    		t.Fatalf("NonDefault kind = %v, want uint64", kind)
    	}
    
    	s := New(name)
    	s.Value()
    	s.IncNonDefault()
    	s.IncNonDefault()
    	s.IncNonDefault()
    	metrics.Read(m[:])
    	if kind := m[0].Value.Kind(); kind != metrics.KindUint64 {
    		t.Fatalf("NonDefault kind = %v, want uint64", kind)
    	}
    	if count := m[0].Value.Uint64(); count != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. api/discovery/apis__admissionregistration.k8s.io__v1beta1.json

    {
      "apiVersion": "v1",
      "groupVersion": "admissionregistration.k8s.io/v1beta1",
      "kind": "APIResourceList",
      "resources": [
        {
          "categories": [
            "api-extensions"
          ],
          "kind": "ValidatingAdmissionPolicy",
          "name": "validatingadmissionpolicies",
          "namespaced": false,
          "singularName": "validatingadmissionpolicy",
          "storageVersionHash": "6OxvlMmQ6is=",
          "verbs": [
            "create",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

    import static org.gradle.internal.instrumentation.processor.codegen.groovy.ParameterMatchEntry.Kind.RECEIVER;
    import static org.gradle.internal.instrumentation.processor.codegen.groovy.ParameterMatchEntry.Kind.RECEIVER_AS_CLASS;
    import static org.gradle.internal.instrumentation.processor.codegen.groovy.ParameterMatchEntry.Kind.VARARG;
    
    class CodeGeneratingSignatureTreeVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    This often comes down to inefficiencies in plugins and custom tasks or constrained resources.
    Use the https://github.com/gradle/gradle-profiler[Gradle Profiler] to find these kinds of bottlenecks.
    With the Gradle Profiler, you can define scenarios like "Running 'assemble' after making an ABI-breaking change"
    and run your build several times to collect profiling data.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. cluster/addons/metrics-server/resource-reader.yaml

        verbs:
          - get
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: system:metrics-server
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:metrics-server
    subjects:
    - kind: ServiceAccount
      name: metrics-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 01:57:01 UTC 2024
    - 988 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/kubelet.go

    	const kind = "KubeletConfiguration"
    
    	if kc.config.FeatureGates == nil {
    		kc.config.FeatureGates = map[string]bool{}
    	}
    
    	if kc.config.StaticPodPath == "" {
    		kc.config.StaticPodPath = kubeadmapiv1.DefaultManifestsDir
    	} else if kc.config.StaticPodPath != kubeadmapiv1.DefaultManifestsDir {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. samples/ratelimit/rate-limit-service.yaml

    ##################################################################################################
    apiVersion: v1
    kind: Service
    metadata:
      name: redis
      labels:
        app: redis
    spec:
      ports:
      - name: redis
        port: 6379
      selector:
        app: redis
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: redis
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: redis
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. hack/testdata/multi-resource-list.json

    {
       "kind":"List",
       "apiVersion":"v1",
       "items":[
          {
            "kind":"Service",
            "apiVersion":"v1",
            "metadata":{
              "name":"mock",
              "labels":{
                "app":"mock"
              }
            },
            "spec":{
              "ports": [{
                "protocol": "TCP",
                "port": 99,
                "targetPort": 9949
              }],
              "selector":{
                "app":"mock"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
  10. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/BeanPropertyExtensions.kt

    
    /**
     * Writes a bean property.
     *
     * A property can only be written when there's a suitable [Codec] for its [value].
     */
    suspend fun WriteContext.writeNextProperty(name: String, value: Any?, kind: PropertyKind) {
        withPropertyTrace(kind, name) {
            try {
                write(value)
            } catch (error: Exception) {
                onError(error) {
                    when {
                        value != null -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top