Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,304 for nature (0.14 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // a persistent volume defined by a pod's inline VolumeSource. This field
      // is populated only for the CSIMigration feature. It contains
      // translated fields from a pod's inline VolumeSource to a
      // PersistentVolumeSpec. This field is beta-level and is only
      // honored by servers that enabled the CSIMigration feature.
      // +optional
      optional .k8s.io.api.core.v1.PersistentVolumeSpec inlineVolumeSpec = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    Gradle uses a convention-over-configuration approach to building native projects.
    If you are coming from another native build system, these concepts may be unfamiliar at first, but they serve a purpose to simplify build script authoring.
    
    We will look at {cpp} projects in detail in this chapter, but most of the topics will apply to other supported native languages as well.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"onExitCodes":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            JvmFeatureInternal feature = new DefaultJvmFeature(
                JvmConstants.JAVA_MAIN_FEATURE_NAME,
                sourceSet,
                Collections.emptySet(),
                project,
                false,
                false
            );
    
            // Create a source directories variant for the feature
            feature.withSourceElements();
    
            return feature;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/generated.proto

      //   `JobBackoffLimitPerIndex` feature gate is enabled (enabled 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
    - 29.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"":         "PodSchedulingContext objects hold information that is needed to schedule a Pod with ResourceClaims that use \"WaitForFirstConsumer\" allocation mode.\n\nThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate.",
    	"metadata": "Standard object metadata",
    	"spec":     "Spec describes where resources for the Pod are needed.",
    	"status":   "Status describes where resources for the Pod can be allocated.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // a persistent volume defined by a pod's inline VolumeSource. This field
      // is populated only for the CSIMigration feature. It contains
      // translated fields from a pod's inline VolumeSource to a
      // PersistentVolumeSpec. This field is beta-level and is only
      // honored by servers that enabled the CSIMigration feature.
      // +optional
      optional k8s.io.api.core.v1.PersistentVolumeSpec inlineVolumeSpec = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    	//   `JobBackoffLimitPerIndex` feature gate is enabled (enabled 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 Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/AbstractAbstractFutureTest.java

      private static void assertSetAsynchronously(AbstractFuture<Integer> future) {
        assertCannotSet(future);
        assertPending(future);
      }
    
      private static void assertPending(AbstractFuture<Integer> future) {
        assertThat(future.isDone()).isFalse();
        assertThat(future.isCancelled()).isFalse();
    
        CountingRunnable listener = new CountingRunnable();
        future.addListener(listener, directExecutor());
        listener.assertNotRun();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

      * This puts a much tighter budget on CPU, memory, latency, and throughput requirements than traditional Istio sidecars.
    
    Ztunnel was not designed to be a feature-rich data plane.
    Quite the opposite - an *aggressively* small feature set is the key feature that makes ztunnel viable.
    It very intentionally does not offer L7 (HTTP) functionality, for instance, which would likely violate some of the goals above, without contributing to them.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top