Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,914 for based (0.05 sec)

  1. plugin/pkg/admission/eventratelimit/limitenforcer.go

    }
    
    func getServerKey(attr admission.Attributes) string {
    	return ""
    }
    
    // getNamespaceKey returns a cache key that is based on the namespace of the event request
    func getNamespaceKey(attr admission.Attributes) string {
    	return attr.GetNamespace()
    }
    
    // getUserKey returns a cache key that is based on the user of the event request
    func getUserKey(attr admission.Attributes) string {
    	userInfo := attr.GetUserInfo()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 02:31:37 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectSpecsTest.groovy

        }
    
        def "project dir based spec"() {
            given:
            StartParameter parameter = new StartParameter()
            parameter.setProjectDir(projectDir)
            parameter.setCurrentDir(currentDir)
    
            expect:
            ProjectSpecs.forStartParameter(parameter, Stub(SettingsInternal)).class == ProjectDirectoryProjectSpec
        }
    
        def "current dir based spec"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 27 03:42:56 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. releasenotes/notes/revision-tag-default-validation.yaml

          cluster operators should switch the default revision. This can be done thorugh `istioctl tag set default --revision <new revision>`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
  4. pilot/pkg/networking/apigen/apigen.go

    // TODO: support WorkloadEntry - to generate endpoints (equivalent with EDS)
    // TODO: based on lessons from MCP, we want to send 'chunked' responses, like apiserver does.
    // A first attempt added a 'sync' record at the end. Based on feedback and common use, a
    // different approach can be used - for large responses, we can mark the last one as 'hasMore'
    // by adding a field to the envelope.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. pkg/serviceaccount/metrics.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package serviceaccount
    
    import (
    	"sync"
    
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    const kubeServiceAccountSubsystem = "serviceaccount"
    
    var (
    	// LegacyTokensTotal is the number of legacy tokens used against apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. pkg/serviceaccount/legacy.go

    				audit.AddAuditAnnotation(ctx, "authentication.k8s.io/legacy-token-autogenerated-secret", secret.Name)
    				autoGeneratedTokensTotal.WithContext(ctx).Inc()
    				break
    			}
    		}
    
    		// Check if it's a manually created secret-based token
    		if !autoGenerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 08:32:23 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/index.md

    So, it was a complete additional system.
    
    It is not very popular or used nowadays.
    
    ## OpenAPI
    
    OpenAPI (previously known as Swagger) is the open specification for building APIs (now part of the Linux Foundation).
    
    **FastAPI** is based on **OpenAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. docs/en/docs/features.md

    * Designed around these standards, after a meticulous study. Instead of an afterthought layer on top.
    * This also allows using automatic **client code generation** in many languages.
    
    ### Automatic docs
    
    Interactive API documentation and exploration web user interfaces. As the framework is based on OpenAPI, there are multiple options, 2 included by default.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

         * This allows the classes to be collected.
         *
         * <p>A map differs from a cache in that entries are not discarded based on memory pressure, but are discarded only when the key is collected.
         * You should prefer using a cache instead of a map where possible, and use a map only when generating other classes based on the key.
         *
         * <p>Note: this should be used to create _only_ global scoped instances.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/TransformerContext.java

        /**
         * Get the model based on the path when resolving the parent based on relativePath.
         *
         * @param from    the requiring model
         * @param pomFile the path to the pomFile
         * @return the model, otherwise {@code null}
         */
        Model getRawModel(Path from, Path pomFile);
    
        /**
         * Get the model from the reactor based on the groupId and artifactId when resolving reactor dependencies.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top