Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 995 for happen (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/alg.go

    		s := (*structtype)(unsafe.Pointer(t))
    		for _, f := range s.Fields {
    			if f.Name.IsBlank() {
    				continue
    			}
    			h = typehash(f.Typ, add(p, f.Offset), h)
    		}
    		return h
    	default:
    		// Should never happen, as typehash should only be called
    		// with comparable types.
    		panic(errorString("hash of unhashable type " + toRType(t).string()))
    	}
    }
    
    func mapKeyError(t *maptype, p unsafe.Pointer) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/discovery.go

    	// after a registry/config event for debouncing.
    	// This will delay the push by at least this interval, plus
    	// the time getting subsequent events. If no change is
    	// detected the push will happen, otherwise we'll keep
    	// delaying until things settle.
    	DebounceAfter time.Duration
    
    	// debounceMax is the maximum time to wait for events
    	// while debouncing. Defaults to 10 seconds. If events keep
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/BloomFilterTest.java

              @Override
              public void run() {
                do {
                  // We can't have a GOLDEN_NOT_PRESENT_KEY because false positives are
                  // possible! It's false negatives that can't happen.
                  assertThat(bloomFilter.mightContain(GOLDEN_PRESENT_KEY)).isTrue();
    
                  int key = getNonGoldenRandomKey();
                  // We can't check that the key is mightContain() == false before the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    	gp := getg()
    	if gp != nil && gp.m != nil && gp.m.mallocing != 0 {
    		throw(err)
    	}
    }
    
    // Many of the following panic entry-points turn into throws when they
    // happen in various runtime contexts. These should never happen in
    // the runtime, and if they do, they indicate a serious issue and
    // should not be caught by user code.
    //
    // The panic{Index,Slice,divide,shift} functions are called by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config.go

    		// There are 2 locations where errors are generated in copystructure.Copy:
    		//  * The reflection walk over the structure fails, which should never happen
    		//  * A configurable copy function returns an error. This is only used for copying times, which never returns an error.
    		// Therefore, this should never happen
    		panic(err)
    	}
    	return copied
    }
    
    // ParseConfigs unmarshals the given YAML bytes into []Config, using a namespace.Static rather
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            when:
            services.addProvider(new ServiceRegistrationProvider() {
                @Provides
                DifferentListener createListener1() {
                    throw new RuntimeException("should not happen")
                }
    
                @Provides
                TestListener createListener() {
                    return listener
                }
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top