Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,834 for happen (0.21 sec)

  1. pilot/pkg/xds/delta.go

    			Subscribed:   sets.New(subs...),
    			Unsubscribed: sets.New(req.ResourceNamesUnsubscribe...).Delete("*"),
    		},
    	}
    	// SidecarScope for the proxy may has not been updated based on this pushContext.
    	// It can happen when `processRequest` comes after push context has been updated(s.initPushContext),
    	// but before proxy's SidecarScope has been updated(s.updateProxy).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. internal/kms/secret-key.go

    		if err := c.UnmarshalJSON(b); err != nil {
    			// It may happen that a random ciphertext starts with '{' and ends with '}'.
    			// In such a case, parsing will fail but we must not return an error. Instead
    			// we return the ciphertext as it is.
    			return b, kms.AES256
    		}
    
    		b = b[:0]
    		b = append(b, c.Bytes...)
    		b = append(b, c.IV...)
    		b = append(b, c.Nonce...)
    		return b, c.Algorithm
    	}
    	return b, kms.AES256
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K 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. 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)
  7. 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)
  8. 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)
  9. src/cmd/trace/procgen.go

    		// viewer at this point because we only display the time the
    		// syscall occupied a P when the viewer is in per-P mode.
    		//
    		// TODO(mknyszek): We could do better in a per-M mode because
    		// all events have to happen on *some* thread, and in v2 traces
    		// we know what that thread is.
    		gs, ok := g.inSyscall[proc]
    		if ok {
    			// Emit syscall slice for blocked syscall.
    			gs.syscallEnd(start, true, ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/crypto/rsa/rsa.go

    			n.Mul(n, prime)
    			pminus1.Sub(prime, bigOne)
    			totient.Mul(totient, pminus1)
    		}
    		if n.BitLen() != bits {
    			// This should never happen for nprimes == 2 because
    			// crypto/rand should set the top two bits in each prime.
    			// For nprimes > 2 we hope it does not happen often.
    			continue NextSetOfPrimes
    		}
    
    		priv.D = new(big.Int)
    		e := big.NewInt(int64(priv.E))
    		ok := priv.D.ModInverse(e, totient)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top