Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for testkey (0.17 sec)

  1. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractTestFixturesIntegrationTest.groovy

                import org.Person;
                import org.junit.Test;
                import static org.junit.Assert.*;
    
                public class PersonTest {
                    @Test
                    public void testAny() {
                        Person anyone = PersonFixture.anyone();
                        assertEquals("John", anyone.getFirstName());
                        assertEquals("Doe", anyone.getLastName());
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/AbstractCache.java

        Map<K, V> result = Maps.newLinkedHashMap();
        for (Object key : keys) {
          if (!result.containsKey(key)) {
            @SuppressWarnings("unchecked")
            K castKey = (K) key;
            V value = getIfPresent(key);
            if (value != null) {
              result.put(castKey, value);
            }
          }
        }
        return ImmutableMap.copyOf(result);
      }
    
      /** @since 11.0 */
      @Override
      public void put(K key, V value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/typeProvider/FirIdeDependentAnalysisSourceModuleAnalysisApiGetSuperTypesTestGenerated.java

      public void testAnonymousObject() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/superTypes/anonymousObject.kt");
      }
    
      @Test
      @TestMetadata("any.kt")
      public void testAny() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/superTypes/any.kt");
      }
    
      @Test
      @TestMetadata("contravariant.kt")
      public void testContravariant() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1beta1/types.go

    	// podFixed represents the fixed resource overhead associated with running a pod.
    	// +optional
    	PodFixed corev1.ResourceList `json:"podFixed,omitempty" protobuf:"bytes,1,opt,name=podFixed,casttype=k8s.io/api/core/v1.ResourceList,castkey=k8s.io/api/core/v1.ResourceName,castvalue=k8s.io/apimachinery/pkg/api/resource.Quantity"`
    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    type Scheduling struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/AbstractNavigableMap.java

        if (entry == null) {
          throw new NoSuchElementException();
        } else {
          return entry.getKey();
        }
      }
    
      @Override
      @ParametricNullness
      public K lastKey() {
        Entry<K, V> entry = lastEntry();
        if (entry == null) {
          throw new NoSuchElementException();
        } else {
          return entry.getKey();
        }
      }
    
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/node/v1alpha1/types.go

    	// podFixed represents the fixed resource overhead associated with running a pod.
    	// +optional
    	PodFixed corev1.ResourceList `json:"podFixed,omitempty" protobuf:"bytes,1,opt,name=podFixed,casttype=k8s.io/api/core/v1.ResourceList,castkey=k8s.io/api/core/v1.ResourceName,castvalue=k8s.io/apimachinery/pkg/api/resource.Quantity"`
    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    type Scheduling struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/node/v1/types.go

    	// podFixed represents the fixed resource overhead associated with running a pod.
    	// +optional
    	PodFixed corev1.ResourceList `json:"podFixed,omitempty" protobuf:"bytes,1,opt,name=podFixed,casttype=k8s.io/api/core/v1.ResourceList,castkey=k8s.io/api/core/v1.ResourceName,castvalue=k8s.io/apimachinery/pkg/api/resource.Quantity"`
    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    type Scheduling struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top