Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 163 for happen (0.15 sec)

  1. pkg/kube/util.go

    	if !ok {
    		// shouldn't happen
    		return obj, nil
    	}
    	// ManagedFields is large and we never use it
    	t.GetObjectMeta().SetManagedFields(nil)
    	// only container ports can be used
    	if pod := obj.(*corev1.Pod); pod != nil {
    		containers := []corev1.Container{}
    		for _, c := range pod.Spec.Containers {
    			if len(c.Ports) > 0 {
    				containers = append(containers, corev1.Container{
    					Ports: c.Ports,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_linux.go

    	if config.Mode == proxyconfigapi.ProxyModeIPTables {
    		logger.Info("Using iptables Proxier")
    
    		if dualStack {
    			ipt, _ := getIPTables(s.PrimaryIPFamily)
    
    			// TODO this has side effects that should only happen when Run() is invoked.
    			proxier, err = iptables.NewDualStackProxier(
    				ctx,
    				ipt,
    				utilsysctl.New(),
    				exec.New(),
    				config.IPTables.SyncPeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net.go

    		log.Warnf("failed to sync host IPset: %v", err)
    		consErr = append(consErr, err)
    	}
    
    	podsByUID := slices.GroupUnique(ambientPods, (*corev1.Pod).GetUID)
    	if err := s.buildZtunnelSnapshot(podsByUID); err != nil {
    		log.Warnf("failed to construct initial ztunnel snapshot: %v", err)
    		consErr = append(consErr, err)
    	}
    
    	return errors.Join(consErr...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                // The close() on this loader will block until this method completes.
                JarEntry classEntry = jarFile.getJarEntry(classNameToPath(className));
                if (classEntry == null) {
                    // This can happen if the class was "injected" into the classloader, e.g. when decorated class is generated by the ObjectFactory.
                    // Injected classes reuse the protection domain. See ClassLoaderUtils.define and defineDecorator.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. tests/scan_test.go

    	if err != nil {
    		t.Errorf("No error should happen, got %v", err)
    	}
    
    	type Result struct {
    		Name string
    		Age  int
    	}
    
    	var results []Result
    	for rows.Next() {
    		var result Result
    		if err := DB.ScanRows(rows, &result); err != nil {
    			t.Errorf("should get no error, but got %v", err)
    		}
    		results = append(results, result)
    	}
    
    	sort.Slice(results, func(i, j int) bool {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/informers_test.go

    	assertPodAnnotated(t, client, pod)
    
    	// Assert expected calls actually made
    	fs.AssertExpectations(t)
    
    	// unlabelling the namespace should cause only one RemovePodFromMesh to happen
    	fs.On("RemovePodFromMesh",
    		ctx,
    		mock.Anything,
    	).Once().Return(nil)
    
    	// unlabel the namespace
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":null}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. src/time/tick_test.go

    		// for Reset of timer NOT in heap.
    		tim.Stop()
    		drainAsync()
    		tim.Reset(1)
    		assertLen()
    		assertTick()
    	}
    
    	// Sleep long enough that a second tick must happen if this is a ticker.
    	// Test that Reset does not lose the tick that should have happened.
    	Sleep(sched)
    	tim.Reset(10000 * Second)
    	drainAsync()
    	noTick()
    
    	notDone := func(done chan bool) {
    		t.Helper()
    		select {
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. src/os/exec.go

    	}
    
    	for {
    		state := p.state.Load()
    		refs := state &^ processStatusMask
    		status := processStatus(state & processStatusMask)
    		if refs == 0 {
    			// This should never happen because
    			// handleTransientRelease is always paired with
    			// handleTransientAcquire.
    			panic("release of handle with refcount 0")
    		}
    		if refs == 1 && status == statusOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/test/framework/components/istio/kube.go

    				}, metav1.UpdateOptions{}); err != nil {
    					scopes.Framework.Errorf("failed updating namespace %s on cluster %s. This can happen when deploying "+
    						"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    				}
    			} else {
    				scopes.Framework.Errorf("failed creating namespace %s on cluster %s. This can happen when deploying "+
    					"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top