Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,533 for happen (0.11 sec)

  1. pkg/controller/resourceclaim/controller.go

    				return true, "must create ResourceClaim from template"
    			}
    			// User needs to create claim.
    			return false, "claim is missing and must be created by user"
    		}
    		if err != nil {
    			// Shouldn't happen.
    			return true, fmt.Sprintf("internal error while checking for claim: %v", err)
    		}
    
    		if checkOwner &&
    			resourceclaim.IsForPod(pod, claim) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	}
    	if selectedFlowSchema == nil {
    		// This should never happen. If the requestDigest's User is a part of
    		// system:authenticated or system:unauthenticated, the catch-all flow
    		// schema should match it. However, if that invariant somehow fails,
    		// fallback to the catch-all flow schema anyway.
    		if catchAllFlowSchema == nil {
    			// This should absolutely never, ever happen! APF guarantees two
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

    import java.util.logging.ConsoleHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    
    /**
     * An HTTP server that allows a test to synchronize and make assertions about concurrent activities that happen in another process.
     * For example, can be used to that certain tasks do or do not execute in parallel.
     */
    public class BlockingHttpServer extends ExternalResource implements ResettableExpectations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

                        FileSystemSnapshot previous = previousSnapshots.get(key);
                        // If the property was null before (can only happen for tasks with optional outputs)
                        if (previous == null) {
                            return FileSystemSnapshot.EMPTY;
                        }
                        //noinspection ConstantConditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/manager.go

    		}
    		// The claim name might be nil if no underlying resource claim
    		// was generated for the referenced claim. There are valid use
    		// cases when this might happen, so we simply skip it.
    		if claimName == nil {
    			continue
    		}
    		claimNames = append(claimNames, *claimName)
    	}
    	return m.unprepareResources(pod.UID, pod.Namespace, claimNames)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      abstract T runInterruptibly() throws Exception;
    
      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
       */
      abstract void afterRanInterruptiblySuccess(@ParametricNullness T result);
    
      /**
       * Any interruption that happens as a result of calling interruptTask will arrive before this
       * method is called. Complete Futures here.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller.go

    	if features.EnableK8SServiceSelectWorkloadEntries {
    		fep := c.collectWorkloadInstanceEndpoints(svc)
    		endpoints = append(endpoints, fep...)
    	}
    	if !features.EnableExternalNameAlias {
    		endpoints = append(endpoints, kube.ExternalNameEndpoints(svc)...)
    	}
    	return endpoints
    }
    
    func (c *Controller) onNodeEvent(_, node *v1.Node, event model.Event) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            }
            StringBuilder builder = new StringBuilder();
            for (int i = 0, len = names.length; i < len; i++) {
                if (i != 0) {
                    builder.append(".");
                }
                builder.append(names[i]);
            }
            return builder.toString();
        }
    
        public ModelPath child(String child) {
            if (this.components.length == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pkg/controller/servicecidrs/servicecidrs_controller.go

    	if !ok || managedBy != ipallocator.ControllerName {
    		return []string{}
    	}
    
    	address, err := netip.ParseAddr(ip.Name)
    	if err != nil {
    		// This should not happen, the IPAddress object validates
    		// the name is a valid IPAddress
    		return []string{}
    	}
    
    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    	serviceCIDRs := []string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        try {
          in.copyTo(out);
          fail();
        } catch (IOException expected) {
          return expected.getSuppressed().length;
        }
        throw new AssertionError(); // can't happen
      }
    
      private static CharSource newNormalCharSource() {
        return CharSource.wrap("ABC");
      }
    
      private static CharSink newNormalCharSink() {
        return new CharSink() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top