Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,078 for jailed (0.18 sec)

  1. pkg/proxy/nftables/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/runtime/crash_test.go

    	} else {
    		if _, ok := err.(*exec.ExitError); ok {
    			t.Logf("%v: %v", cmd, err)
    		} else if errors.Is(err, exec.ErrWaitDelay) {
    			t.Fatalf("%v: %v", cmd, err)
    		} else {
    			t.Fatalf("%v failed to start: %v", cmd, err)
    		}
    	}
    	return string(out)
    }
    
    var serializeBuild = make(chan bool, 2)
    
    func buildTestProg(t *testing.T, binary string, flags ...string) (string, error) {
    	if *flagQuick {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/status/server_test.go

    		if err == nil {
    			if tc.err != "" {
    				t.Errorf("test case failed [%v], expect error %v", tc.probe, tc.err)
    			}
    			continue
    		}
    		if tc.err == "" {
    			t.Errorf("test case failed [%v], expect no error, got %v", tc.probe, err)
    		}
    		// error case, error string should match.
    		if !strings.Contains(err.Error(), tc.err) {
    			t.Errorf("test case failed [%v], expect error %v, got %v", tc.probe, tc.err, err)
    		}
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            then:
            failure.assertHasDescription("Execution failed for task ':thing'.")
            failure.assertHasCause("Failed to calculate the value of task ':thing' property 'prop'.")
            failure.assertHasCause("broken")
        }
    
        @ToBeFixedForConfigurationCache(because = "configuration cache captures provider value")
        def "task @Input property calculation is called once only when task executes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_linux.go

    	if err != nil {
    		klog.ErrorS(err, "Failed to detect if CPU cgroup cpu.cfs_period_us is available")
    	}
    	quotaExists, err := utilpath.Exists(utilpath.CheckFollowSymlink, path.Join(cpuMountPoint, "cpu.cfs_quota_us"))
    	if err != nil {
    		klog.ErrorS(err, "Failed to detect if CPU cgroup cpu.cfs_quota_us is available")
    	}
    	if quotaExists && periodExists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    		} else {
    			// The plugin failed, mark the volume as Failed and send Warning
    			// event
    			if _, err := ctrl.updateVolumePhaseWithEvent(ctx, volume, v1.VolumeFailed, v1.EventTypeWarning, events.VolumeFailedDelete, err.Error()); err != nil {
    				logger.V(4).Info("DeleteVolumeOperation: failed to mark volume as failed", "volumeName", volume.Name, "err", err)
    				// Save failed, retry on the next deletion attempt
    				return pluginName, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/builder_test.go

    	if err != nil {
    		t.Fatalf("failed to read file: %v", err)
    	}
    	if forTCP {
    		out := &listener.Filter{}
    		if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    			t.Fatalf("failed to parse YAML: %v", err)
    		}
    		return out
    	}
    	out := &hcm.HttpFilter{}
    	if err := protomarshal.ApplyYAML(string(data), out); err != nil {
    		t.Fatalf("failed to parse YAML: %v", err)
    	}
    	return out
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    [+]log ok
    [-]wrapping-health failed: reason withheld
    [-]delegate-health failed: reason withheld
    [+]poststarthook/generic-apiserver-start-informers ok
    [+]poststarthook/max-in-flight-filter ok
    [+]poststarthook/storage-object-count-tracker-hook ok
    [+]poststarthook/delegate-post-start-hook ok
    [+]poststarthook/wrapping-post-start-hook ok
    healthz check failed
    `, t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent.go

    		if err != nil {
    			return nil, fmt.Errorf("failed to start SDS server: %v", err)
    		}
    	}
    	a.xdsProxy, err = initXdsProxy(a)
    	if err != nil {
    		return nil, fmt.Errorf("failed to start xds proxy: %v", err)
    	}
    	if a.cfg.ProxyXDSDebugViaAgent {
    		err = a.xdsProxy.initDebugInterface(a.cfg.ProxyXDSDebugViaAgentPort)
    		if err != nil {
    			return nil, fmt.Errorf("failed to start istio tap server: %v", err)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. pkg/kube/kclient/crdwatcher.go

    }
    
    // HasSynced returns whether the underlying cache has synced and the callback has been called at least once.
    func (c *crdWatcher) HasSynced() bool {
    	return c.queue.HasSynced()
    }
    
    // Run starts the controller. This must be called.
    func (c *crdWatcher) Run(stop <-chan struct{}) {
    	c.mutex.Lock()
    	if c.stop != nil {
    		// Run already called. Because we call this from client.RunAndWait this isn't uncommon
    		c.mutex.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top