Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,304 for nature (0.33 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

      }
    
      private static Set<Feature<?>> computeReserializedMapFeatures(Set<Feature<?>> mapFeatures) {
        Set<Feature<?>> derivedFeatures = Helpers.copyToSet(mapFeatures);
        derivedFeatures.remove(CollectionFeature.SERIALIZABLE);
        derivedFeatures.remove(CollectionFeature.SERIALIZABLE_INCLUDING_VIEWS);
        return derivedFeatures;
      }
    
      private static Set<Feature<?>> computeEntrySetFeatures(Set<Feature<?>> mapFeatures) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/registry/storage/csidriver/strategy_test.go

    		wantSELinuxMount                    *bool
    	}{
    		{
    			name:           "podInfoOnMount feature enabled, before: none, update: enabled",
    			old:            driverWithNothing,
    			update:         driverWithPodInfoOnMountEnabled,
    			wantGeneration: 1,
    		},
    		{
    			name:           "podInfoOnMount feature enabled, before: enabled, update: disabled",
    			old:            driverWithPodInfoOnMountEnabled,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                    }
    
                    def "native services are enabled"() {
                        given:
                        // We check if native dir was created before running a build, which would
                        // mean that native services were initialized by a test executor
                        println("Test executor initialized Native services: " + new File("${nativeDirOverride}").exists())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    // a Pod with ResourceClaims that use "WaitForFirstConsumer" allocation
    // mode.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    message PodSchedulingContext {
      // Standard object metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        InterruptibleFuture future = new InterruptibleFuture();
        assertTrue(future.cancel(false));
        assertTrue(future.isCancelled());
        assertTrue(future.isDone());
        assertFalse(future.wasInterrupted());
        assertFalse(future.interruptTaskWasCalled);
        CancellationException e = assertThrows(CancellationException.class, () -> future.get());
        assertThat(e).hasCauseThat().isNull();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types.go

    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    type ResourceClaim struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

                resolveRuntimeArtifacts(javaLibrary) {
                    optionalFeatureCapabilities << "org:optional-feature:1.0"
                    withModuleMetadata {
                        expectFiles "publishTest-1.9.jar", "optionaldep-1.0.jar", "publishTest-1.9-optional-feature.jar"
                    }
                    withoutModuleMetadata {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TaskBooleanOptionIntegrationTest.groovy

            outputContains("""
    Detailed task information for sample
    
    Path
         :sample
    
    Type
         SampleTask (SampleTask)
    
    Options
         --feature     Opposite option of --no-feature.
    
         --no-feature     Configures boolean option 'feature' that is only negated.
    
         --myBooleanObjectOption     Configures boolean option 'myBooleanObjectOption'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaIntegTest.groovy

            "with an arbitrary name and a classifier"            | "other-1.9.jar"                        | "optional-feature" | null
            "with an arbitrary name with an implicit classifier" | "other-1.9-optional-feature.jar"       | null               | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	//   `JobBackoffLimitPerIndex` feature gate is enabled (disabled by default).
    	// - Ignore: indicates that the counter towards the .backoffLimit is not
    	//   incremented and a replacement pod is created.
    	// - Count: indicates that the pod is handled in the default way - the
    	//   counter towards the .backoffLimit is incremented.
    	// Additional values are considered to be added in the future. Clients should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top