Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for greatest (0.2 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	return fakeContainers
    }
    
    // makeTestContainer creates a test api container.
    func makeTestContainer(name, image string) v1.Container {
    	return v1.Container{
    		Name:  name,
    		Image: image,
    	}
    }
    
    // makeTestPod creates a test api pod.
    func makeTestPod(podName, podNamespace, podUID string, containers []v1.Container) *v1.Pod {
    	return &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Preconditions.java

       * @param size the size of that array, list or string
       * @return the value of {@code index}
       * @throws IndexOutOfBoundsException if {@code index} is negative or is greater than {@code size}
       * @throws IllegalArgumentException if {@code size} is negative
       */
      @CanIgnoreReturnValue
      public static int checkPositionIndex(int index, int size) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Preconditions.java

       * @param size the size of that array, list or string
       * @return the value of {@code index}
       * @throws IndexOutOfBoundsException if {@code index} is negative or is greater than {@code size}
       * @throws IllegalArgumentException if {@code size} is negative
       */
      @CanIgnoreReturnValue
      public static int checkPositionIndex(int index, int size) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	if disk == nil {
    		return errDiskNotFound
    	}
    	volumes := []string{
    		minioMetaTmpDeletedBucket, // creates .minio.sys/tmp as well as .minio.sys/tmp/.trash
    		minioMetaMultipartBucket,  // creates .minio.sys/multipart
    		dataUsageBucket,           // creates .minio.sys/buckets
    		minioConfigBucket,         // creates .minio.sys/config
    	}
    	// Attempt to create MinIO internal buckets.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    return null
                }
    
                if (resolveCalleeExpressionOfFunctionCall) {
                    // For implicit invoke, we resolve the calleeExpression of the CallExpression to the call that creates the receiver of this
                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	verifyNewDetacherCallCount(t, false /* expectZeroNewDetacherCallCount */, fakePlugin)
    	waitForDetachCallCount(t, 0 /* expectedDetachCallCount */, fakePlugin)
    }
    
    // Creates a volume with accessMode ReadWriteMany
    // Populates desiredStateOfWorld cache with two node/volume/pod tuples pointing to the created volume
    // Calls Run()
    // Verifies there are two attach calls and no detach calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	return signature, nil
    }
    
    // emptyASN1Subject is the ASN.1 DER encoding of an empty Subject, which is
    // just an empty SEQUENCE.
    var emptyASN1Subject = []byte{0x30, 0}
    
    // CreateCertificate creates a new X.509 v3 certificate based on a template.
    // The following members of template are currently used:
    //
    //   - AuthorityKeyId
    //   - BasicConstraintsValid
    //   - CRLDistributionPoints
    //   - DNSNames
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    	// service's hostname within a platform (e.g., foo, foo.default, foo.default.svc, etc.)
    	VirtualServiceHosts []string
    
    	// Routes in the virtual host
    	Routes []*route.Route
    }
    
    // BuildSidecarVirtualHostWrapper creates virtual hosts from the given set of virtual Services
    // and a list of Services from the service registry. Services are indexed by FQDN hostnames.
    // The list of Services is also passed to allow maintaining consistent ordering.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. plugin/pkg/admission/resourcequota/admission_test.go

    	}
    }
    
    // TestAdmitBelowTerminatingQuotaLimit ensures that terminating pods are charged to the right quota.
    // It creates a terminating and non-terminating quota, and creates a terminating pod.
    // It ensures that the terminating quota is incremented, and the non-terminating quota is not.
    func TestAdmitBelowTerminatingQuotaLimit(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    val myOtherNewProperty by extra { "calculated initial value" }  // <2>
    
    val myProperty: String by extra  // <3>
    val myNullableProperty: String? by extra  // <4>
    ----
    <1> Creates a new extra property called `myNewProperty` in the current context (the project in this case) and initializes it with the value `"initial value"`, which also determines the property's _type_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top