Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for pad_string (0.24 sec)

  1. src/debug/dwarf/tag_string.go

    Ian Lance Taylor <******@****.***> 1556758126 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 03 17:32:37 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionExecutorTest.groovy

            actions {}
    
            when:
            visit()
    
            then:
            2 * delegateAction.processFile({ it.relativePath.pathString == '/root/path/file1.txt' })
            1 * delegateAction.processFile({ it.relativePath.pathString == '/root/path/file2.txt' })
        }
    
        def duplicatesExcludedByPerFileConfiguration() {
            given:
            files 'path/file1.txt', 'path/file2.txt', 'path/file1.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopyActionExecuterTest.groovy

            when:
            executer.execute(copySpec, copyAction)
    
            then:
            1 * action.processFile({ it.relativePath.pathString == "a" })
            0 * action.processFile(_)
        }
    
        Closure path(path) {
            return { println it.relativePath.pathString; it.relativePath.pathString == path }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/file/FileVisitorUtil.groovy

                        if (details.relativePath.parent.parent) {
                            assertThat(dirs, hasItem(details.relativePath.parent.pathString))
                        }
                        assertTrue(files.add(details.relativePath.pathString))
                        assertTrue(details.relativePath.isFile())
                        assertTrue(details.file.file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. internal/s3select/sql/utils.go

    // String - returns the JSONPath representation
    func (e *JSONPath) String() string {
    	if len(e.pathString) == 0 {
    		parts := make([]string, len(e.PathExpr)+1)
    		parts[0] = e.BaseKey.String()
    		for i, pe := range e.PathExpr {
    			parts[i+1] = pe.String()
    		}
    		e.pathString = strings.Join(parts, "")
    	}
    	return e.pathString
    }
    
    // StripTableAlias removes a table alias from the path. The result is also
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 10 16:12:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

                Decoder decoder = new InputStreamBackedDecoder(inputStream);
                String pidString = decoder.readNullableString();
                String uid = decoder.readString();
                Long pid = pidString == null ? null : Long.parseLong(pidString);
                Address address = new MultiChoiceAddressSerializer().read(decoder);
                File daemonLog = new File(decoder.readString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/test/groovy/org/gradle/model/dsl/internal/NonTransformedModelDslBackingTest.groovy

        def modelDsl
    
        def setup() {
            modelDsl = new NonTransformedModelDslBacking(getRegistry())
        }
    
        void register(String pathString, Object element) {
            registry.register(ModelRegistrations.bridgedInstance(ModelReference.of(pathString, element.class), element).descriptor("register").build())
        }
    
        def "can add rules via dsl"() {
            given:
            register("foo", [])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/swig/testdata/callback/main.swigcxx

       license that can be found in the LICENSE file.  */
    
    /* An example of writing a C++ virtual function in Go.  */
    
    %module(directors="1") callback
    
    %{
    #include <string>
    #include "main.h"
    %}
    
    %include "std_string.i"
    
    %feature("director");
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 366 bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

            def path = path(':foo:bar')
    
            expect:
            path.takeFirstSegments(42) === path
        }
    
        def "segments"(pathString) {
            given:
            def path = path(pathString)
    
            expect:
            path.segments() == segments
    
            where:
            pathString    | segments
            ':foo:bar'    | ["foo", "bar"]
            'foo:bar'     | ["foo", "bar"]
            'foo:bar:zzz' | ["foo", "bar", "zzz"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        // Define a domain object set to hold strings
        val myStrings: DomainObjectSet<String> = project.objects.domainObjectSet(String::class)
    
        // Add some strings to the domain object set
        fun addString(value: String) {
            myStrings.add(value)
        }
    }
    // end::dos[]
    
    // tag::ndos[]
    // tag::ndol[]
    // tag::ndoc[]
    abstract class Person(val name: String)
    // end::ndol[]
    // end::ndoc[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top