Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for avoidance (0.22 sec)

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

      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
      // Count of hash collisions for the DaemonSet. The DaemonSet controller
      // uses this field as a collision avoidance mechanism when it needs to
      // create the name for the newest ControllerRevision.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    	PassthroughFilterChain = "PassthroughFilterChain"
    
    	// Inbound pass through cluster need to the bind the loopback ip address for the security and loop avoidance.
    	InboundPassthroughCluster = "InboundPassthroughCluster"
    
    	// IstioMetadataKey is the key under which metadata is added to a route or cluster
    	// regarding the virtual service or destination rule used for each
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    However, the bytecode should still result in the same runtime behavior.
    
    NOTE: <<java_plugin.adoc#sec:java_compile_avoidance,Java compile avoidance>> will treat this bytecode the same since it extracts the ABI.
    
    Treating the minor number as an input can decrease the likelihood of a cache hit for developer builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    ```
    someTask {
        inputFile.from(jar)
    }
    ```
    
    In some cases, for producer tasks which don't use the <<lazy_configuration#lazy_configuration,configuration avoidance APIs>>, you can instead declare an _explicit dependency_ on the task:
    
    ```
    someTask {
        dependsOn(producer)
        inputFile.from(producer.someFile)
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Since Gradle 3.0, Gradle has invested heavily in making Gradle builds much faster, with features such as link:https://blog.gradle.org/introducing-gradle-build-cache[build caching], link:https://blog.gradle.org/incremental-compiler-avoidance[compile avoidance], and an improved incremental Java compiler.
    Gradle is now 2-10x faster than Maven for the vast majority of projects, even without using a build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
      // Count of hash collisions for the DaemonSet. The DaemonSet controller
      // uses this field as a collision avoidance mechanism when it needs to
      // create the name for the newest ControllerRevision.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control.go

    // new ControllerRevisions. This count is incremented on every name collision and is used in
    // building the ControllerRevision names for name collision avoidance. This method may create
    // a new revision, or modify the Revision of an existing revision if an update to set is detected.
    // This method expects that revisions is sorted when supplied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    [source,groovy]
    ----
    copy {
        from("resources")
        into("target")
        include("**/*.txt", "**/*.xml", "**/*.properties")
    }
    ----
    
    NOTE: This option breaks task configuration avoidance and is not recommended!
    
    Regardless of the method chosen, the task is configured with the name of the files to be copied and the location of the files.
    
    [[sec:implementing_tasks]]
    === 3. Implementing tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | link:https://github.com/MatthiasRobbers/shortbread[Shortbread]
    | link:https://github.com/MatthiasRobbers/shortbread/releases/tag/v1.1.0[1.1.0]
    | N/A
    
    |===
    
    [[sec:java_compile_avoidance]]
    == Compilation avoidance
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

      }
    
      // Class unloading test:
    
      public static final class WillBeUnloadedException extends Exception {}
    
      @AndroidIncompatible // "Parent ClassLoader may not be null"; maybe avoidable if we try?
      public void testGetChecked_classUnloading() throws Exception {
        WeakReference<?> classUsedByGetChecked = doTestClassUnloading();
        GcFinalization.awaitClear(classUsedByGetChecked);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.4K bytes
    - Viewed (0)
Back to top