Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 275 for toGetter (0.33 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	// serializer contains the list of "special" serializers for a GroupResource.  Resource=* means for the entire group
    	serializer runtime.StorageSerializer
    	// cohabitatingResources keeps track of which resources must be stored together.  This happens when we have multiple ways
    	// of exposing one set of concepts.  autoscaling.HPA and extensions.HPA as a for instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. fastapi/dependencies/utils.py

            assert depends is None, (
                "Cannot specify `Depends` in `Annotated` and default value"
                f" together for {param_name!r}"
            )
            assert field_info is None, (
                "Cannot specify a FastAPI annotation in `Annotated` and `Depends` as a"
                f" default value together for {param_name!r}"
            )
            depends = value
        elif isinstance(value, FieldInfo):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ====
    
    [[connecting_properties_together]]
    == Connecting properties together
    
    An important feature of lazy properties is that they can be connected together so that changes to one property are automatically reflected in other properties.
    
    Here is an example where the property of a task is connected to a property of a project extension:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication_test.go

    			},
    			expectErr: "oidc-issuer-url and oidc-client-id must be specified together when any oidc-* flags are set",
    		},
    		{
    			name: "issuer url set, client id is not set",
    			args: []string{
    				"--oidc-issuer-url=https://testIssuerURL",
    				"--oidc-username-claim=testClaim",
    			},
    			expectErr: "oidc-issuer-url and oidc-client-id must be specified together when any oidc-* flags are set",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    }
    
    func (AuditAnnotation) SwaggerDoc() map[string]string {
    	return map_AuditAnnotation
    }
    
    var map_ExpressionWarning = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  6. guava/src/com/google/common/eventbus/EventBus.java

     * href="https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-introduction">Spring</a>.
     * Frameworks typically offer a way to register multiple listeners independently and then request
     * them together as a set (<a href="https://dagger.dev/dev-guide/multibindings">Dagger</a>, <a
     * href="https://github.com/google/guice/wiki/Multibindings">Guice</a>, <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

         * with each letter representing a 4-byte word: ABCDABCDABCDABCD... and to calculate
         * CRC(A000A000A000...), CRC(0B000B000B...), CRC(00C000C000C...), CRC(000D000D000D...)
         * and then to XOR them together.  The STRIDE_TABLE enables us to hash an int followed by 12
         * zero bytes (3 ints), while the BYTE_TABLE is for advancing one byte at a time.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

        // This could be a single Pod, a VM instance, etc.
        Workload workload = 1;
        // Service represents a service - a group of workloads that can be accessed together.
        Service service = 2;
      }
    }
    
    // Service represents a service - a group of workloads that can be accessed together.
    // The xds primary key is "namespace/hostname".
    // Secondary (alias) keys are the unique `network/IP` pairs that the service can be reached at.
    message Service {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                the rule to apply only to HTTP requests that use one of
                                the listed HTTP Methods (e.g. GET, PUT, etc.) Multiple
                                methods are OR'd together.
                              items:
                                type: string
                              type: array
                            paths:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //
      // If multiple ValidatingAdmissionPolicyBinding resources match an
      // API request, then the valueExpression will be evaluated for
      // each binding. All unique values produced by the valueExpressions
      // will be joined together in a comma-separated list.
      //
      // Required.
      optional string valueExpression = 2;
    }
    
    // ExpressionWarning is a warning information that targets a specific expression.
    message ExpressionWarning {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
Back to top