Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 824 for repeated (0.13 sec)

  1. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 5;
    }
    
    message CertificateSigningRequestList {
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      repeated CertificateSigningRequest items = 2;
    }
    
    // CertificateSigningRequestSpec contains the certificate request.
    message CertificateSigningRequestSpec {
      // Base64-encoded PKCS#10 CSR data
      // +listType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/dns/proto/nds.proto

    // Table of hostnames and their IPs to br used for DNS resolution at the agent
    // Sent by istiod to istio agents via xds
    message NameTable {
        message NameInfo {
            // List of IPs for the host.
            repeated string ips = 1;
    
            // The name of the service registry containing the service (e.g. 'Kubernetes').
            string registry = 2;
    
            // The k8s service name. Only applies when registry=`Kubernetes`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 01 20:40:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/graph/DependencyGraphRendererSpec.groovy

                    '\\--- dep2',
                    '     +--- dep1 (*)',
                    '     \\--- dep2.2',
                    '',
                    '(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.'
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 03 14:10:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1beta1/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
    - 5.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top