Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for testprop (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

                createDirs("a", "a/a1")
                settingsFile << "include ':a:a1'"
    
                buildFile << """
                    ext.testProp = 'rootValue'
    
                    task checkTestProp {
                        doLast {
                            assert testProp == 'rootValue'
                        }
                    }
                """.stripIndent()
    
                ['a', 'b', 'a:a1'].each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MapsTest.java

        Properties testProp = new Properties();
    
        Map<String, String> result = Maps.fromProperties(testProp);
        assertTrue(result.isEmpty());
        testProp.setProperty("first", "true");
    
        result = Maps.fromProperties(testProp);
        assertEquals("true", result.get("first"));
        assertEquals(1, result.size());
        testProp.setProperty("second", "null");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            parameter.logLevel = LogLevel.DEBUG
            parameter.consoleOutput = ConsoleOutput.Plain
            parameter.configureOnDemand = true
            parameter.systemPropertiesArgs.put("testprop", "foo")
    
            // Non-copied
            parameter.currentDir = new File("other")
            parameter.buildFile = new File("build file")
            parameter.settingsFile = new File("settings file")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            assertThat(bean.getProp(), nullValue());
    
            conventionAware.getConventionMapping().map("prop", new Callable<String>() {
                public String call() {
                    return "conventionValue";
                }
            });
    
            assertThat(bean.getProp(), equalTo("conventionValue"));
    
            bean.setProp("value");
            assertThat(bean.getProp(), equalTo("value"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

    import org.lastaflute.web.validation.theme.typed.LongTypeValidator;
    import org.opensearch.search.sort.SortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    public interface FessProp {
    
        String API_PING_SEARCH_ENGINE_FIELD_SET = "apiPingSearchEngineFieldSet";
    
        String QUERY_HIGHLIGHT_TERMINAL_CHARS = "queryHighlightTerminalChars";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/runtime/crash_test.go

    		t.Skip("-quick")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	testprog.Lock()
    	if testprog.dir == "" {
    		dir, err := os.MkdirTemp("", "go-build")
    		if err != nil {
    			t.Fatalf("failed to create temp directory: %v", err)
    		}
    		testprog.dir = dir
    		toRemove = append(toRemove, dir)
    	}
    
    	if testprog.target == nil {
    		testprog.target = make(map[string]*buildexe)
    	}
    	name := binary
    	if len(flags) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. tensorflow/c/test_op.cc

    A. Unique TensorFlower <******@****.***> 1473725266 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 13 00:16:08 UTC 2016
    - 874 bytes
    - Viewed (0)
  8. tensorflow/cc/framework/test_op.cc

    Skye Wanderman-Milne <******@****.***> 1502840776 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 15 23:50:32 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  9. test/const7.go

    	}
    	defer os.RemoveAll(dir)
    
    	const bitLimit = 512
    	const charLimit = 10000 // compiler-internal constant length limit
    	testProg(dir, "x1", bitLimit, "")
    	testProg(dir, "x2", bitLimit+1, "constant overflow")
    	testProg(dir, "x3", charLimit-2, "constant overflow") // -2 because literal contains 0b prefix
    	testProg(dir, "x4", charLimit-1, "excessively long constant")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprognet/signal.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows && !plan9
    // +build !windows,!plan9
    
    // This is in testprognet instead of testprog because testprog
    // must not import anything (like net, but also like os/signal)
    // that kicks off background goroutines during init.
    
    package main
    
    import (
    	"os/signal"
    	"syscall"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 646 bytes
    - Viewed (0)
Back to top