Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,006 for thinsp (0.21 sec)

  1. src/mdo/reader-stax.vm

    #*
      Licensed to the Apache Software Foundation (ASF) under one
      or more contributor license agreements.  See the NOTICE file
      distributed with this work for additional information
      regarding copyright ownership.  The ASF licenses this file
      to you under the Apache License, Version 2.0 (the
      "License"); you may not use this file except in compliance
      with the License.  You may obtain a copy of the License at
    
      http://www.apache.org/licenses/LICENSE-2.0
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

    #*
      Licensed to the Apache Software Foundation (ASF) under one
      or more contributor license agreements.  See the NOTICE file
      distributed with this work for additional information
      regarding copyright ownership.  The ASF licenses this file
      to you under the Apache License, Version 2.0 (the
      "License"); you may not use this file except in compliance
      with the License.  You may obtain a copy of the License at
    
      http://www.apache.org/licenses/LICENSE-2.0
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"ϑ":                        "\u03d1",
    	"ϑ":                          "\u03d1",
    	"≈":                     "\u2248",
    	"∼":                        "\u223c",
    	" ":                          "\u2009",
    	"≈":                           "\u2248",
    	"∼":                          "\u223c",
    	"þ":                           "\u00fe",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                thing.extensions.create('thing2', Thing)
                thing.thing.extensions.create('thing2', Thing)
                thing.thing.thing2.extensions.create('thing2', Thing)
                thing.thing2.extensions.create('thing2', Thing)
    
                thing {
                    thing {
                        thing2 {
                            name = 'thing'
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"oelig":    "\u0153",
    	"Scaron":   "\u0160",
    	"scaron":   "\u0161",
    	"Yuml":     "\u0178",
    	"circ":     "\u02C6",
    	"tilde":    "\u02DC",
    	"ensp":     "\u2002",
    	"emsp":     "\u2003",
    	"thinsp":   "\u2009",
    	"zwnj":     "\u200C",
    	"zwj":      "\u200D",
    	"lrm":      "\u200E",
    	"rlm":      "\u200F",
    	"ndash":    "\u2013",
    	"mdash":    "\u2014",
    	"lsquo":    "\u2018",
    	"rsquo":    "\u2019",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

                    abstract void setThing(Thing t)
    
                    @Defaults
                    void defaultB(@Path('thingB') Thing thingB) {
                        assert thing.name == 'thing a from dsl'
                        thingB.name = thing.name
                    }
    
                    @Finalize
                    void defaultC(@Path('thingC') Thing thingC) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("processing thing1-1.2.jar using []")
            outputContains("processing thing2-1.2.jar using []")
            outputContains("processing thing3-1.2.jar using [thing1-1.2.jar, thing2-1.2.jar]")
            outputContains("files = [thing3-1.2.jar.green, thing1-1.2.jar.green, thing2-1.2.jar.green]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/Thing.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl
    
    import org.gradle.api.Named
    
    interface Thing extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 723 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/WeakIdentityHashMapTest.groovy

            WeakIdentityHashMap.WeakKey<Thing> weakKey1 = new WeakIdentityHashMap.WeakKey<>(thing1)
            WeakIdentityHashMap.WeakKey<Thing> weakKey2 = new WeakIdentityHashMap.WeakKey<>(thing2)
    
            expect:
            weakKey1 != weakKey2
        }
    
        def "hashCodes of weakKeys for equal objects are different"() {
            Thing thing1 = new Thing("thing")
            Thing thing2 = new Thing("thing")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelDslCreationIntegrationTest.groovy

                        name = $.thing1.name + " bar"
                    }
                    tasks {
                        create("echo") {
                            doLast {
                                println "thing2.name: " + $.thing2.name
                            }
                        }
                    }
                }
            '''
    
            then:
            succeeds "echo"
            output.contains "thing2.name: foo bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top