Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 7,747 for jailed (0.35 sec)

  1. src/testing/testing.go

    }
    
    // Fail marks the function as having failed but continues execution.
    func (c *common) Fail() {
    	if c.parent != nil {
    		c.parent.Fail()
    	}
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	// c.done needs to be locked to synchronize checks to c.done in parent tests.
    	if c.done {
    		panic("Fail in goroutine after " + c.name + " has completed")
    	}
    	c.failed = true
    }
    
    // Failed reports whether the function has failed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net.go

    	if openNetns == nil {
    		log.Warn("failed to find pod netns during removal")
    		return fmt.Errorf("failed to find pod netns during removal")
    	}
    	// pod is removed from the mesh, but is still running. remove iptables rules
    	log.Debugf("calling DeleteInpodRules.")
    	if err := s.netnsRunner(openNetns, func() error { return s.iptablesConfigurator.DeleteInpodRules() }); err != nil {
    		log.Errorf("failed to delete inpod rules %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/Handler.java

                            try {
                                handlerClass = Class.forName(className);
                            }
                            catch ( Exception ex ) {
                                log.debug("Failed to load handler class " + className, ex);
                            }
                            if ( handlerClass == null ) {
                                handlerClass = ClassLoader.getSystemClassLoader().loadClass(className);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    			if ok && err != nil {
    				klog.Errorf("Failed to shutdown test server clearly: %v", err)
    			}
    		}
    
    		if len(result.TmpDir) != 0 {
    			os.RemoveAll(result.TmpDir)
    		}
    	}
    	defer func() {
    		if result.TearDownFn == nil {
    			tearDown()
    		}
    	}()
    
    	result.TmpDir, err = os.MkdirTemp("", "apiextensions-apiserver")
    	if err != nil {
    		return result, fmt.Errorf("failed to create temp dir: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  5. pkg/proxy/iptables/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: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/testing/sub_test.go

    			}
    			if tc.chatty {
    				root.chatty = newChattyPrinter(root.w)
    			}
    			root.runN(1)
    			if ok != !tc.failed {
    				t.Errorf("%s:ok: got %v; want %v", tc.desc, ok, !tc.failed)
    			}
    			if !ok != root.Failed() {
    				t.Errorf("%s:root failed: got %v; want %v", tc.desc, !ok, root.Failed())
    			}
    			// All tests are run as subtests
    			if root.result.N != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ForwardingWrapperTester.java

            throw new RuntimeException(e);
          } catch (InvocationTargetException e) {
            throw Throwables.propagate(e.getCause());
          }
          assertEquals("Failed to forward to " + method, 1, called.get());
        }
    
        @Override
        public String toString() {
          return "dummy " + interfaceType.getSimpleName();
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/metrics_test.go

    			}
    			service.allow = !scenario.authFakeServiceDeny
    
    			server, err := NewV1TestServer(service, scenario.serverCert, scenario.serverKey, scenario.serverCA)
    			if err != nil {
    				t.Errorf("%s: failed to create server: %v", scenario.name, err)
    				return
    			}
    			defer server.Close()
    
    			fakeAuthnMetrics := &fakeAuthenticatorMetrics{}
    			authnMetrics := AuthenticatorMetrics{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/fake.go

    		var buf bytes.Buffer
    		if err := tmpl.Execute(&buf, opts.ConfigTemplateInput); err != nil {
    			t.Fatalf("failed to execute template: %v", err)
    		}
    		configStr = buf.String()
    	}
    	cfgs := opts.Configs
    	if configStr != "" {
    		t0 := time.Now()
    		configs, _, err := crd.ParseInputs(configStr)
    		if err != nil {
    			t.Fatalf("failed to read config: %v: %v", err, configStr)
    		}
    		// setup default namespace if not defined
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/serviceaccount/jwt.go

    }
    
    // Validator is called by the JWT token authenticator to apply domain specific
    // validation to a token and extract user information.
    type Validator interface {
    	// Validate validates a token and returns user information or an error.
    	// Validator can assume that the issuer and signature of a token are already
    	// verified when this function is called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top