Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,017 for deflated (0.22 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

                "        <p>This happens when a dependency was compromised or that downloaded artifact isn't the one that you expected.</p>",
                "        <p>It's important that you <b>carefully review this problem</b>.</p>");
            registerModal("deleted-artifact", "Deleted artifact",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// ttlSecondsAfterFinished after the Job finishes, it is eligible to be
    	// automatically deleted. When the Job is being deleted, its lifecycle
    	// guarantees (e.g. finalizers) will be honored. If this field is unset,
    	// the Job won't be automatically deleted. If this field is set to zero,
    	// the Job becomes eligible to be deleted immediately after it finishes.
    	// +optional
    	TTLSecondsAfterFinished *int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    The constructor must be annotated with the `javax.inject.Inject` annotation.
    Gradle uses the declared type of each constructor parameter to determine the services that the object requires.
    The order of the constructor parameters and their names are not significant and can be whatever you like.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * declared in the given [KaSymbolWithMembers].
         *
         * The declared member scope does not contain classifiers (including the companion object) except for inner classes. To retrieve the
         * classifiers declared in this [KaSymbolWithMembers], please use the *static* declared member scope provided by
         * [getStaticDeclaredMemberScope].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        successfulExtensions("permessage-deflate")
      }
    
      @Test
      @Throws(Exception::class)
      fun compressedMessagesNoClientContextTakeover() {
        successfulExtensions("permessage-deflate; client_no_context_takeover")
      }
    
      @Test
      @Throws(Exception::class)
      fun compressedMessagesNoServerContextTakeover() {
        successfulExtensions("permessage-deflate; server_no_context_takeover")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.proto

      // ttlSecondsAfterFinished after the Job finishes, it is eligible to be
      // automatically deleted. When the Job is being deleted, its lifecycle
      // guarantees (e.g. finalizers) will be honored. If this field is unset,
      // the Job won't be automatically deleted. If this field is set to zero,
      // the Job becomes eligible to be deleted immediately after it finishes.
      // +optional
      optional int32 ttlSecondsAfterFinished = 8;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. pkg/controller/podgc/gc_controller_test.go

    			pods: []*v1.Pod{
    				makePod("a", "deleted", v1.PodFailed),
    				makePod("b", "deleted", v1.PodSucceeded),
    			},
    			itemsInQueue:    1,
    			deletedPodNames: sets.New("a", "b"),
    		},
    		{
    			name:  "no nodes with PodDisruptionConditions enabled",
    			delay: 2 * quarantineTime,
    			pods: []*v1.Pod{
    				makePod("a", "deleted", v1.PodFailed),
    				makePod("b", "deleted", v1.PodSucceeded),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    	// ttlSecondsAfterFinished after the Job finishes, it is eligible to be
    	// automatically deleted. When the Job is being deleted, its lifecycle
    	// guarantees (e.g. finalizers) will be honored. If this field is unset,
    	// the Job won't be automatically deleted. If this field is set to zero,
    	// the Job becomes eligible to be deleted immediately after it finishes.
    	// +optional
    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. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    include::sample[dir="snippets/dependencyManagement/catalogs-settings/groovy",files="settings.gradle[tags=catalog_with_versions]"]
    ====
    
    Versions declared separately are _also_ available via type-safe accessors, making them usable for more use cases than dependency versions, in particular for tooling:
    
    .Using a version declared in a version catalog
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/taint_eviction_test.go

    							continue
    						}
    						if deleteAction.GetResource().Resource != "pods" {
    							continue
    						}
    						if podName == deleteAction.GetName() {
    							deleted = true
    						}
    					}
    					if !deleted {
    						t.Errorf("Failed to deleted pod %v after %v", podName, delay)
    					}
    				}
    				for _, action := range fakeClientset.Actions() {
    					deleteAction, ok := action.(clienttesting.DeleteActionImpl)
    					if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top