Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,868 for revoked (0.14 sec)

  1. src/cmd/compile/internal/ssa/cse_test.go

    				fallthrough
    			case "r2":
    				fallthrough
    			case "r3":
    				if s1Cnt == 0 {
    					t.Errorf("cse removed all of r1,r2,r3")
    				}
    				s1Cnt--
    
    			case "r4":
    				fallthrough
    			case "r5":
    				if s2Cnt == 0 {
    					t.Errorf("cse removed all of r4,r5")
    				}
    				s2Cnt--
    			default:
    				t.Errorf("cse removed %s, but shouldn't have", k)
    			}
    		}
    	}
    
    	if s1Cnt != 0 || s2Cnt != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. pkg/controller/resourcequota/resource_quota_controller.go

    	}, period)
    }
    
    // printDiff returns a human-readable summary of what resources were added and removed
    func printDiff(oldResources, newResources map[schema.GroupVersionResource]struct{}) string {
    	removed := sets.NewString()
    	for oldResource := range oldResources {
    		if _, ok := newResources[oldResource]; !ok {
    			removed.Insert(fmt.Sprintf("%+v", oldResource))
    		}
    	}
    	added := sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    - `DefaultTask.newInputDirectory()`
    - `DefaultTask.newOutputDirectory()`
    - `ProjectLayout.directoryProperty()`
    
    ==== Annotation `@Nullable` has been removed
    
    The `org.gradle.api.Nullable` annotation type has been removed. Use `javax.annotation.Nullable` from JSR-305 instead.
    
    ==== The FindBugs plugin has been removed
    
    The deprecated FindBugs plugin has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/framework/fake_plugins.go

    func (pl *FakeReservePlugin) Name() string {
    	return "FakeReserve"
    }
    
    // Reserve invoked at the Reserve extension point.
    func (pl *FakeReservePlugin) Reserve(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ string) *framework.Status {
    	return pl.Status
    }
    
    // Unreserve invoked at the Unreserve extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/RemovalCause.java

    import java.util.Map;
    import java.util.concurrent.ConcurrentMap;
    
    /**
     * The reason why a cached entry was removed.
     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum RemovalCause {
      /**
       * The entry was manually removed by the user. This can result from the user invoking {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions.go

    	return changed
    }
    
    // RemoveStatusCondition removes the corresponding conditionType from conditions if present. Returns
    // true if it was present and got removed.
    // conditions must be non-nil.
    func RemoveStatusCondition(conditions *[]metav1.Condition, conditionType string) (removed bool) {
    	if conditions == nil || len(*conditions) == 0 {
    		return false
    	}
    	newConditions := make([]metav1.Condition, 0, len(*conditions)-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. releasenotes/notes/remove-addons-mixer-istioctl.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 23868
      - 23583
    releaseNotes:
      - |
        **Removed** the installation of telemetry addons (Prometheus, Grafana, Zipkin, Jaeger, Kiali) from installation by `istioctl`. See [Reworking our Addon Integrations](/blog/2020/addon-rework/) for more info.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 408 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

                 }
                """
            when:
            executer.expectDocumentedDeprecationWarning("The CopyProcessingSpec.setFileMode(Integer) method has been deprecated. " +
                "This is scheduled to be removed in Gradle 9.0. " +
                "Please use the filePermissions(Action) method instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathChangeDetector.java

                    }
                }
            }
    
            for (String previousAbsolutePath : unaccountedForPreviousItems) {
                Change removed = changeFactory.removed(previousAbsolutePath, propertyTitle, previous.get(previousAbsolutePath));
                if (!visitor.visitChange(removed)) {
                    return false;
                }
            }
            return true;
        }
    
        public interface ItemComparator<S> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultFileChange.java

        }
    
        public static DefaultFileChange removed(String path, String title, FileType previousFileType, String normalizedPath) {
            return new DefaultFileChange(path, ChangeTypeInternal.REMOVED, title, previousFileType, FileType.Missing, normalizedPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top