Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,078 for jailed (0.12 sec)

  1. cmd/bucket-policy-handlers_test.go

    	// The only aim is to generate an HTTP request in a way that the relevant/registered end point is evoked/called.
    	nilBucket := "dummy-bucket"
    
    	nilReq, err := newTestSignedRequestV4(http.MethodPut, getPutPolicyURL("", nilBucket),
    		0, nil, "", "", nil)
    	if err != nil {
    		t.Errorf("MinIO %s: Failed to create HTTP request for testing the response when object Layer is set to `nil`.", instanceType)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. src/testing/benchmark.go

    					},
    					benchFunc: b.benchFunc,
    					benchTime: b.benchTime,
    				}
    				b.run1()
    			}
    			r := b.doBench()
    			if b.failed {
    				// The output could be very long here, but probably isn't.
    				// We print it all, regardless, because we don't want to trim the reason
    				// the benchmark failed.
    				fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
    				continue
    			}
    			results := r.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	}
    	name := current.f.Name()
    	data, err := os.ReadFile(name)
    	if err != nil {
    		return nil, fmt.Errorf("failed to read from file: %v", err)
    	}
    	pf, err := Parse(name, data)
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse: %v", err)
    	}
    	return pf, nil
    }
    
    // ReadFile reads the counters and stack counters from the given file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

        const bool is_main_func = func.getSymName() == kStablehloMainFunctionName;
        if (tf_symbol_table.lookup(func.getSymName())) {
          if (failed(stablehlo_symbol_table.renameToUnique(
                  func, {&tf_symbol_table, &stablehlo_symbol_table}))) {
            return func.emitError()
                   << "failed to rename StableHLO function " << func.getSymName();
          }
        }
        if (is_main_func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    		klog.Fatalf("PostStartHook %q failed: %v", name, err)
    	}
    	close(entry.done)
    }
    
    func runPreShutdownHook(name string, entry preShutdownHookEntry) error {
    	var err error
    	func() {
    		// don't let the hook *accidentally* panic and kill the server
    		defer utilruntime.HandleCrash()
    		err = entry.hook()
    	}()
    	if err != nil {
    		return fmt.Errorf("PreShutdownHook %q failed: %v", name, err)
    	}
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    		},
    		{
    			testName: "Disabled - disables if called with one client doesn't support it",
    			rounds: []testCase{
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.5.13", Endpoint: "localhost:2390"},
    					{Version: "3.5.10", Endpoint: "localhost:2391"}},
    					expectedResult: false}},
    		},
    		{
    			testName: "Disabled - disables if called with all client doesn't support it",
    			rounds: []testCase{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin.go

    		pi, k8sErr = getK8sPodInfo(kClient, podName, podNamespace)
    		if k8sErr == nil {
    			break
    		}
    		log.Debugf("Failed to get %s/%s pod info: %v", podNamespace, podName, k8sErr)
    		time.Sleep(podRetrievalInterval)
    	}
    	if k8sErr != nil {
    		log.Errorf("Failed to get %s/%s pod info: %v", podNamespace, podName, k8sErr)
    		return k8sErr
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

          return;
        }
        fail("should have failed");
      }
    
      public void testEqualsAndSerializableOnReturnValues_serializableButNotEquals() throws Exception {
        try {
          tester.forAllPublicStaticMethods(GoodSerializableFactory.class).testEqualsAndSerializable();
        } catch (AssertionError expected) {
          return;
        }
        fail("should have failed");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    	if err != nil {
    		message := fmt.Sprintf("Failed to generate sandbox config for pod %q: %v", format.Pod(pod), err)
    		klog.ErrorS(err, "Failed to generate sandbox config for pod", "pod", klog.KObj(pod))
    		return "", message, err
    	}
    
    	// Create pod logs directory
    	err = m.osInterface.MkdirAll(podSandboxConfig.LogDirectory, 0755)
    	if err != nil {
    		message := fmt.Sprintf("Failed to create log directory for pod %q: %v", format.Pod(pod), err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. tests/integration/helm/util.go

    		t.Errorf("failed to delete %s release: %v", IngressReleaseName, err)
    	}
    	if err := h.DeleteChart(IstiodReleaseName, config.Get(IstiodReleaseName)); err != nil {
    		t.Errorf("failed to delete %s release: %v", IstiodReleaseName, err)
    	}
    	if isAmbient {
    		if err := h.DeleteChart(ZtunnelReleaseName, config.Get(ZtunnelReleaseName)); err != nil {
    			t.Errorf("failed to delete %s release: %v", ZtunnelReleaseName, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top