Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 341 for jailed (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // of successful test parts and the number of failed test parts.
      int total_part_count() const;
    
      // Returns the number of the test properties.
      int test_property_count() const;
    
      // Returns true iff the test passed (i.e. no test part failed).
      bool Passed() const { return !Failed(); }
    
      // Returns true iff the test failed.
      bool Failed() const;
    
      // Returns true iff the test fatally failed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // of successful test parts and the number of failed test parts.
      int total_part_count() const;
    
      // Returns the number of the test properties.
      int test_property_count() const;
    
      // Returns true iff the test passed (i.e. no test part failed).
      bool Passed() const { return !Failed(); }
    
      // Returns true iff the test failed.
      bool Failed() const;
    
      // Returns true iff the test fatally failed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      # E1023 04:03:58.150266    4840 reflector.go:205] k8s.io/kubernetes/pkg/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          if (failed(FillAttributesForUniformQuantizedDotOp(
                  rewriter, uniform_op, identifier_to_attr, quantization_method,
                  enable_per_channel_quantization)))
            return failure();
        } else if (auto uniform_op =
                       llvm::dyn_cast<TF::UniformQuantizedAddOp>(inner_op);
                   uniform_op != nullptr) {
          if (failed(FillAttributesForUniformQuantizedAddOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    		t.Errorf("Test expected to return nil, failed instead got a non-nil value %s", toObjectErr(nil))
    	}
    	if toStorageErr(nil) != nil {
    		t.Errorf("Test expected to return nil, failed instead got a non-nil value %s", toStorageErr(nil))
    	}
    	ctx := context.Background()
    	if toAPIError(ctx, nil) != noError {
    		t.Errorf("Test expected error code to be ErrNone, failed instead provided %s", toAPIError(ctx, nil).Code)
    	}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. cmd/object-api-multipart_test.go

    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    		// Failed to create newbucket, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    	// Initiate Multipart Upload on the above created bucket.
    	res, err := obj.NewMultipartUpload(context.Background(), bucket, object, opts)
    	if err != nil {
    		// Failed to create NewMultipartUpload, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    )
    
    var (
    	// ErrCreateContainerConfig - failed to create container config
    	ErrCreateContainerConfig = errors.New("CreateContainerConfigError")
    	// ErrPreCreateHook - failed to execute PreCreateHook
    	ErrPreCreateHook = errors.New("PreCreateHookError")
    	// ErrCreateContainer - failed to create container
    	ErrCreateContainer = errors.New("CreateContainerError")
    	// ErrPreStartHook - failed to execute PreStartHook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			volumePlugins:  []volume.VolumePlugin{},
    			expectErr:      true,
    			expectedErrMsg: "MapVolume.FindMapperPluginBySpec failed",
    		},
    		"blockVolumePlugin is nil": {
    			volumePlugins:  volumetesting.NewFakeFileVolumePlugin(),
    			expectErr:      true,
    			expectedErrMsg: "MapVolume.FindMapperPluginBySpec failed to find BlockVolumeMapper plugin. Volume plugin is nil.",
    		},
    	}
    
    	for name, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	file, err := Create(to)
    	if err != nil {
    		t.Fatalf("Create(%q) failed: %v", to, err)
    	}
    	if err = file.Close(); err != nil {
    		t.Errorf("Close(%q) failed: %v", to, err)
    	}
    	err = Symlink(to, from)
    	if err != nil {
    		t.Fatalf("Symlink(%q, %q) failed: %v", to, from, err)
    	}
    	tostat, err := Lstat(to)
    	if err != nil {
    		t.Fatalf("Lstat(%q) failed: %v", to, err)
    	}
    	if tostat.Mode()&ModeSymlink != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    					}
    					if countFailed {
    						needsFlush = true
    						uncountedStatus.Failed = append(uncountedStatus.Failed, pod.UID)
    					}
    				} else {
    					needsFlush = true
    					uncountedStatus.Failed = append(uncountedStatus.Failed, pod.UID)
    				}
    			}
    		}
    		if len(newSucceededIndexes)+len(uncountedStatus.Succeeded)+len(uncountedStatus.Failed) >= MaxUncountedPods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top