Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,198 for repeated (0.17 sec)

  1. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/permissions/KaBaseAnalysisPermissionChecker.kt

         * Caches [KaAnalysisPermissionRegistry] to avoid repeated `getService` calls in [analyze][org.jetbrains.kotlin.analysis.api.analyze]
         * and validity assertions.
         */
        @KaCachedService
        private val permissionRegistry by lazy(LazyThreadSafetyMode.PUBLICATION) {
            KaAnalysisPermissionRegistry.getInstance()
        }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
      // sideEffects == Unknown or Some. Defaults to Unknown.
      // +optional
      optional string sideEffects = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // +optional
      // +listType=atomic
      repeated EndpointPort ports = 3;
    }
    
    // EndpointSliceList represents a list of endpoint slices
    message EndpointSliceList {
      // Standard list metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1/generated.proto

    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    }
    
    // SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    )
    
    const (
    	// message Profile
    	tagProfile_SampleType        = 1  // repeated ValueType
    	tagProfile_Sample            = 2  // repeated Sample
    	tagProfile_Mapping           = 3  // repeated Mapping
    	tagProfile_Location          = 4  // repeated Location
    	tagProfile_Function          = 5  // repeated Function
    	tagProfile_StringTable       = 6  // repeated string
    	tagProfile_DropFrames        = 7  // int64 (string table index)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. pkg/util/hash/hash_test.go

    			hash1a := hasher1.Sum32()
    			DeepHashObject(hasher2, tc())
    			hash2a := hasher2.Sum32()
    
    			if hash1a != hash1 {
    				t.Errorf("repeated hash of the same object (%q) produced different results: %d vs %d", toString(tc()), hash1, hash1a)
    			}
    			if hash2a != hash2 {
    				t.Errorf("repeated hash of the same object (%q) produced different results: %d vs %d", toString(tc()), hash2, hash2a)
    			}
    			if hash1a != hash2a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinReadActionConfinementLifetimeToken.kt

        /**
         * Caches [KaAnalysisPermissionChecker] to avoid repeated [Project.getService] calls in validity assertions.
         */
        @KaCachedService
        private val permissionChecker = KaAnalysisPermissionChecker.getInstance(project)
    
        /**
         * Caches [KaLifetimeTracker] to avoid repeated [Project.getService] calls in validity assertions.
         */
        @KaCachedService
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformSampleIntegrationTest.groovy

            new DefaultTestExecutionResult(sample.dir).testClassByHtml('org.gradle.junitplatform.JupiterTest').assertTestCount(5, 0, 0)
                .assertTestPassed('ok')
                .assertTestPassed('repeated()[1]', 'repetition 1 of 2')
                .assertTestPassed('repeated()[2]', 'repetition 2 of 2')
                .assertTestPassed('test1(TestInfo)', 'TEST 1')
                .assertTestSkipped('disabled')
        }
    
        @UsesSample('testing/junitplatform-mix/groovy')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	lister corev1listers.ResourceQuotaLister
    
    	// liveLookups holds the last few live lookups we've done to help ammortize cost on repeated lookup failures.
    	// This lets us handle the case of latent caches, by looking up actual results for a namespace on cache miss/no results.
    	// We track the lookup result here so that for repeated requests, we don't look it up very often.
    	liveLookupCache *lru.Cache
    	group           singleflight.Group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // +listType=atomic
      // +optional
      repeated NamedRuleWithOperations resourceRules = 3;
    
      // ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about.
      // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
      // +listType=atomic
      // +optional
      repeated NamedRuleWithOperations excludeResourceRules = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top