Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 669 for repeated (0.14 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // The name of each attribute must be unique.
      //
      // +listType=atomic
      // +optional
      repeated NamedResourcesAttribute attributes = 2;
    }
    
    // NamedResourcesIntSlice contains a slice of 64-bit integers.
    message NamedResourcesIntSlice {
      // Ints is the slice of 64-bit integers.
      //
      // +listType=atomic
      repeated int64 ints = 1;
    }
    
    // NamedResourcesRequest is used in ResourceRequestModel.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      IntOrString rollingMaxUnavailable = 32 [deprecated = true];
    
      string externalTrafficPolicy = 34;
    
      repeated k8s.io.api.core.v1.Toleration tolerations = 35 [deprecated = true];
    
      repeated google.protobuf.Struct ingressPorts = 36;
    
      repeated google.protobuf.Struct additionalContainers = 37;
    
      repeated google.protobuf.Struct configVolumes = 38;
    
      google.protobuf.BoolValue runAsRoot = 45;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_errors_pos.txt

    # Test case for #67623 in go.work files: make sure the errors are
    # printed on lines starting with file and line number so they
    # can be easily parsed by tools.
    
    cp go.work.repeated.txt go.work
    ! go list
    stderr '^go.work:4: path .* appears multiple times in workspace$'
    
    cp go.work.badgodebug.txt go.work
    ! go list
    stderr '^go.work:3: unknown godebug "foo"$'
    
    cp go.work.unparsable.txt go.work
    ! go list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/sessions/KaBaseSessionProvider.kt

        /**
         * Caches [KaAnalysisPermissionChecker] to avoid repeated [Project.getService] calls in [analyze].
         */
        @KaCachedService
        private val permissionChecker by lazy(LazyThreadSafetyMode.PUBLICATION) {
            KaAnalysisPermissionChecker.getInstance(project)
        }
    
        /**
         * Caches [KaBaseLifetimeTracker] to avoid repeated [Project.getService] calls in [analyze].
         */
        @KaCachedService
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      repeated NetworkAddress addresses = 4;
      // Ports for the service.
      // The target_port may be overridden on a per-workload basis.
      repeated Port ports = 5;
      // Optional; if set, the SAN to verify for TLS connections.
      // Typically, this is not set and per-workload identity is used to verify
      // TODO: support this field
      repeated string subject_alt_names = 6;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. 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)
  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. 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)
  9. 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)
  10. src/cmd/go/testdata/script/build_repeated_godebug_issue62346.txt

    [short] skip # runs go build
    ! go build file.go
    ! stderr 'panic:'
    ! stderr 'runtime error'
    stderr 'file.go:2:1: repeated //go:debug for panicnil'
    
    -- file.go --
    //go:debug panicnil=1
    //go:debug panicnil=1
    
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 236 bytes
    - Viewed (0)
Back to top