Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,435 for deflated (0.23 sec)

  1. pkg/controller/resourceclaim/controller_test.go

    		},
    		{
    			name: "no-such-pod",
    			key:  podKey(testPodWithResource),
    		},
    		{
    			name: "pod-deleted",
    			pods: func() []*v1.Pod {
    				deleted := metav1.Now()
    				pods := []*v1.Pod{testPodWithResource.DeepCopy()}
    				pods[0].DeletionTimestamp = &deleted
    				return pods
    			}(),
    			key: podKey(testPodWithResource),
    		},
    		{
    			name: "no-volumes",
    			pods: []*v1.Pod{testPod},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiBootPathConfigurer.java

        /**
         * Attempts to find the Jansi library and copies it to a specified folder.
         * The copy operation happens only once. Sets the Jansi-related system property.
         *
         * This hackery is to prevent Jansi from creating a shared lib in a tmp dir which is deleted when
         * the Java process finishes. To avoid performance impacts caused by Jansi's default behavior the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/ws/WebSocketExtensionsTest.kt

      }
    
      @Test
      fun emptyParameters() {
        assertThat(parse("permessage-deflate;"))
          .isEqualTo(WebSocketExtensions(perMessageDeflate = true))
      }
    
      @Test
      fun repeatedPerMessageDeflate() {
        assertThat(parse("permessage-deflate, permessage-deflate; server_no_context_takeover"))
          .isEqualTo(
            WebSocketExtensions(
              perMessageDeflate = true,
              serverNoContextTakeover = true,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pkg/controller/util/node/controller_utils.go

    	"k8s.io/kubernetes/pkg/kubelet/util/format"
    	nodepkg "k8s.io/kubernetes/pkg/util/node"
    
    	"k8s.io/klog/v2"
    )
    
    // DeletePods will delete all pods from master running on given node,
    // and return true if any pods were deleted, or were found pending
    // deletion.
    func DeletePods(ctx context.Context, kubeClient clientset.Interface, pods []*v1.Pod, recorder record.EventRecorder, nodeName, nodeUID string, daemonStore appsv1listers.DaemonSetLister) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    +
    If not, directories for release versions are deleted after 30 days of inactivity, and snapshot versions after 7 days.
    - Shared caches in `caches/` (e.g., `jars-*`) are checked for whether they are still in use.
    +
    If no Gradle version still uses them, they are deleted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

         * be declared.
         *
         * @since 3.4
         */
        public static final String API_CONFIGURATION_NAME = "api";
    
        /**
         * The name of the implementation configuration, where dependencies that are only used internally by
         * a component should be declared.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. pkg/volume/util/recyclerclient/recycler_client.go

    					if pod.Status.Message != "" {
    						return fmt.Errorf(pod.Status.Message)
    					}
    					return fmt.Errorf("pod failed, pod.Status.Message unknown")
    				}
    
    			case watch.Deleted:
    				return fmt.Errorf("recycler pod was deleted")
    
    			case watch.Error:
    				return fmt.Errorf("recycler pod watcher failed")
    			}
    
    		case *v1.Event:
    			// Event received
    			podEvent := event.Object.(*v1.Event)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  8. releasenotes/README.md

     - '[reference] https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/'
    
    releaseNotes:
    - |
      **Fixed** an issue preventing the operator from recreating watched resources if they are deleted
    
    upgradeNotes:
      - title: Change the readiness port of gateways
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    |===
    |Mode |Description |Default? |Use-Case
    
    |`PREFER_PROJECT`
    |Any repository declared on a project will cause the project to use the repositories declared by the project, ignoring those declared in settings.
    |Yes
    |Useful when teams need to use different repositories not common among subprojects.
    
    |`PREFER_SETTINGS`
    |Any repository declared directly in a project, either directly or via a plugin, will be ignored.
    |No
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  10. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// or
    	// b) was force-deleted.
    	//
    	// It's now just waiting for garbage collection. We could wait
    	// for it to actually get removed, but that may be blocked by
    	// finalizers for the pod and thus get delayed.
    	//
    	// Worse, it is possible that there is a cyclic dependency
    	// (pod finalizer waits for PVC to get removed, PVC protection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top