Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 467 for Desc (0.03 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassDetector.java

            return true;
        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
            if ("Lorg/junit/runner/RunWith;".equals(desc)) {
                setTest(true);
            }
    
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

            return false;
        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
            if ("Lorg/testng/annotations/Test;".equals(desc)) {
                setTest(true);
            }
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isAbstract() && !isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/LimitedDescriptionTest.groovy

        @SuppressWarnings("deprecation")
        def desc = new LimitedDescription(2)
    
        def "has limited description"() {
            when:
            desc.append("0").append("one").append("2").append("three !")
    
            then:
            desc.toString() == """2
    three !
    """
        }
    
        def "is described even when empty"() {
            expect:
            desc.toString().length() != 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value_test.go

    				}
    
    			}
    		})
    	}
    }
    
    func TestValueToK8s(t *testing.T) {
    	tests := []struct {
    		desc      string
    		inIOPSpec string
    		want      string
    		wantErr   string
    	}{
    		{
    			desc: "pilot env k8s setting with values",
    			inIOPSpec: `
    spec:
      components:
        pilot:
          k8s:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

            assertTrue(desc, isTimed(method));
            break;
          case 3:
            assertTrue(desc, isGuarded(method));
            assertTrue(desc, isTimed(method));
            break;
          default:
            fail(desc);
        }
    
        if (method.getReturnType() == void.class) {
          assertFalse(desc, isBoolean(method));
        } else {
          assertTrue(desc, isBoolean(method));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters_test.go

    	)
    
    	cases := []struct {
    		desc           string
    		maxImages      int32
    		imageList      []kubecontainer.Image
    		imageListError error
    		expectError    error
    	}{
    		{
    			desc:      "max images enforced",
    			maxImages: 1,
    			imageList: makeImageList(2, 1, minImageSize, maxImageSize),
    		},
    		{
    			desc:      "no max images cap for -1",
    			maxImages: -1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

        "experimental-prune-unreachable-nodes-unconditionally",
        llvm::cl::desc("Prune nodes that are not ancestors of the output nodes."),
        llvm::cl::location(experimental_prune_unreachable_nodes_unconditionally),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static opt<std::string> input_arrays_flag(
        "input-arrays",
        llvm::cl::desc(
            "List of input tensors, if different from the default inputs"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonDiagnosticsTest.groovy

            def log = temp.file("foo.log")
            log << "hey joe!"
            def diagnostics = new DaemonDiagnostics(log, 123)
    
            when:
            String desc = diagnostics.describe()
    
            then:
            desc.contains "123"
            desc.contains log.name
            desc.contains "hey joe!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue24161e1/main.go

    import "C"
    import (
    	"fmt"
    	"testing"
    )
    
    func f1() {
    	C.SecKeyCreateSignature(0, C.kSecKeyAlgorithmECDSASignatureDigestX962SHA1, 0, nil)
    }
    
    func f2(e C.CFErrorRef) {
    	if desc := C.CFErrorCopyDescription(e); desc != 0 {
    		fmt.Println(desc)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf_mlir_translate_main.cc

    static llvm::cl::opt<std::string> input_filename(llvm::cl::Positional,
                                                     llvm::cl::desc("<input file>"),
                                                     llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> output_filename(
        "o", llvm::cl::desc("Output filename"), llvm::cl::value_desc("filename"),
        llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top