Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for twoArgs (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            tester.lastMethod == "oneAction"
            tester.lastArgs.size() == 1
            tester.lastArgs.first() instanceof Action
    
            when:
            tester.twoArgs("1") { assert it == "subject" }
    
            then:
            tester.lastMethod == "twoArgs"
            tester.lastArgs.size() == 2
            tester.lastArgs.first() == "1"
            tester.lastArgs.last() instanceof Action
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      public void testTwoArgNormalNormal() throws Exception {
        Method method = TwoArg.class.getMethod("normalNormal", String.class, Integer.class);
        for (TwoArg.Action first : TwoArg.Action.values()) {
          for (TwoArg.Action second : TwoArg.Action.values()) {
            TwoArg bar = new TwoArg(first, second);
            if (first.equals(TwoArg.Action.THROW_A_NPE) && second.equals(TwoArg.Action.THROW_A_NPE)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    					runtime.Gosched()
    				}
    				i++
    
    			}
    		}()
    		time.Sleep(time.Millisecond)
    	}
    }
    
    // issue 28540
    
    func twoargsF() {
    	var v struct{ p *byte }
    	C.twoargs1(C.twoargs2(), C.twoargs3(unsafe.Pointer(&v)))
    }
    
    // issue 28545
    
    func issue28545G(p **C.char) {
    	C.issue28545F(p, -1, (0))
    	C.issue28545F(p, 2+3, complex(1, 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeResolver.java

            Type[] toArgs = toParameterizedType.getActualTypeArguments();
            checkArgument(
                fromArgs.length == toArgs.length,
                "%s not compatible with %s",
                fromParameterizedType,
                toParameterizedType);
            for (int i = 0; i < fromArgs.length; i++) {
              populateTypeMappings(mappings, fromArgs[i], toArgs[i]);
            }
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/TypeResolver.java

            Type[] toArgs = toParameterizedType.getActualTypeArguments();
            checkArgument(
                fromArgs.length == toArgs.length,
                "%s not compatible with %s",
                fromParameterizedType,
                toParameterizedType);
            for (int i = 0; i < fromArgs.length; i++) {
              populateTypeMappings(mappings, fromArgs[i], toArgs[i]);
            }
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
Back to top