Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 479 for Street (0.09 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            given:
            def app = new ExeWithLibraryUsingLibraryHelloWorldApp()
            app.writeSources(file("exe/src/main"), file("lib/src/main"), file("greet/src/main"))
    
            and:
            createDirs("exe", "lib", "greet")
            settingsFile << """
                include ':exe', ':lib', ':greet'
            """
            buildFile << """
                project(":exe") {
                    apply plugin: "cpp-application"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            def app = new ExeWithLibraryUsingLibraryHelloWorldApp()
            app.writeSources(file("exe/src/main"), file("lib/src/hello"), file("greet/src/greetings"))
    
            and:
            createDirs("exe", "lib", "greet")
            settingsFile << """
                include ':exe', ':lib', ':greet'
            """
            buildFile << """
                project(":exe") {
                    apply plugin: "cpp"
                    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. .idea/inspectionProfiles/Gradle.xml

          </replaceConfiguration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. test/map.go

    		}
    		if m[nz] != "+0" {
    			fmt.Sprintln("float32 map does not treat", pz, "and", nz, "as equal for read")
    			panic(fmt.Sprintln("float32 map does not treat -0 and +0 as equal for read"))
    		}
    		m[nz] = "-0"
    		if m[pz] != "-0" {
    			panic(fmt.Sprintln("float32 map does not treat -0 and +0 as equal for write"))
    		}
    		if _, ok := m[nana]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 06 21:02:55 UTC 2014
    - 14.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            succeeds project.customTask
            then:
            skipped(project.customTask)
    
            where:
            tree        | resourceName
            'jar'       | 'jarManifest'
            'directory' | 'manifestInDirectory'
        }
    
        def "can ignore entire manifest in #tree on runtime classpath"() {
            def project = new ProjectWithRuntimeClasspathNormalization(Api.RUNTIME).withManifestIgnored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

            Map<File, DirectoryTree> trees = new LinkedHashMap<>();
            for (DirectoryTree tree : getSourceTrees()) {
                if (!trees.containsKey(tree.getDir())) {
                    trees.put(tree.getDir(), tree);
                }
            }
            return new LinkedHashSet<>(trees.values());
        }
    
        protected Set<DirectoryFileTree> getSourceTrees() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. ci/official/utilities/extract_resultstore_links.py

        testsuites.attrib = suite_attrib
        testsuite.attrib = suite_attrib
        indent_xml(testsuites)
    
      tree = ElemTree.ElementTree(testsuites)
      file_path = os.path.join(output_path)
      with open(file_path, 'wb') as f:
        f.write(b'<?xml version="1.0"?>\n')
        tree.write(f)
        if verbose:
          print(f'\nWrote XML with Bazel invocation results to {file_path}')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. src/runtime/sema.go

    			pt = &t.prev
    		} else {
    			pt = &t.next
    		}
    	}
    
    	// Add s as new leaf in tree of unique addrs.
    	// The balanced tree is a treap using ticket as the random heap priority.
    	// That is, it is a binary tree ordered according to the elem addresses,
    	// but then among the space of possible binary trees respecting those
    	// addresses, it is kept balanced on average by maintaining a heap ordering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbSession.java

            this.localPort = localPort;
            this.auth = auth;
            trees = new Vector();
            connectionState = 0;
        }
    
        synchronized SmbTree getSmbTree( String share, String service ) {
            SmbTree t;
    
            if( share == null ) {
                share = "IPC$";
            }
            for( Enumeration e = trees.elements(); e.hasMoreElements(); ) {
                t = (SmbTree)e.nextElement();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  10. src/path/filepath/path.go

    // handle that error; as described earlier, returning the error will
    // cause Walk to stop walking the entire tree.
    //
    // Walk calls the function with a non-nil err argument in two cases.
    //
    // First, if an [os.Lstat] on the root directory or any directory or file
    // in the tree fails, Walk calls the function with path set to that
    // directory or file's path, info set to nil, and err set to the error
    // from os.Lstat.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top