Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 283 for Street (0.15 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.user_description	=	Description
    labels.description	=	Description
    labels.user_title	=	Titre
    labels.title	=	Titre
    labels.user_pager	=	Pager
    labels.pager	=	Pager
    labels.user_street	=	Rue
    labels.street	=	Rue
    labels.user_postalCode	=	Code Postal
    labels.postalCode	=	Code Postal
    labels.user_physicalDeliveryOfficeName	=	Nom du bureau de livraison physique
    labels.physicalDeliveryOfficeName	=	Nom du bureau de livraison physique
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/link/link_test.go

    in a balloon and hanging in the misty clouds.  	Gas looming through the fog in divers places in the streets, much as the sun may, from the spongey fields, be seen to loom by husbandman and ploughboy. Most of the shops lighted two hours before their time—as the gas seems to know, for it has a haggard and unwilling look.  	The raw afternoon is rawest, and the dense fog is densest, and the muddy streets are muddiest near that leaden-headed old obstruction, appropriate ornament for the threshold of a leaden-headed...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_ja.properties

    labels.user_roomNumber=部屋番号
    labels.roomNumber=部屋番号
    labels.user_description=説明
    labels.description=説明
    labels.user_title=役職
    labels.title=役職
    labels.user_pager=ポケベル
    labels.pager=ポケベル
    labels.user_street=番地
    labels.street=番地
    labels.user_postalCode=郵便番号
    labels.postalCode=郵便番号
    labels.user_physicalDeliveryOfficeName=事業所
    labels.physicalDeliveryOfficeName=事業所
    labels.user_destinationIndicator=電報サービスアドレス情報
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                    tasks.register<Greet>("greet") {
                        greeting.set("hello, hello")
                    }
                } else {
                    tasks.register<Greet>("greet") {
                        greeting.set(greetingProp)
                    }
                }
            """
            when:
            configurationCacheRun("greet", "-${option}greeting=hi")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            and:
            projectDir(consumer)
            succeeds 'greet'
    
            then:
            outputContains("Hello from Gradle 7.0+")
    
            and:
            def gradle6Executer = buildContext.distribution("6.7.1").executer(temporaryFolder, buildContext)
            def gradle6Result = gradle6Executer.usingProjectDirectory(consumer).withTasks('greet').run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. 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)
  7. .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)
  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/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)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            val tree = CachingLightTree(originalTree)
            val packageNode = packageNode(tree)
            val importNodes = importNodes(tree)
            val scriptNodes = scriptNodes(tree)
    
            val packages = packageHeader(tree, packageNode)
            val imports = importNodes.map { import(tree, it) }
            val statements = scriptNodes.map { statement(tree, it) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top