Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for encodeString (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

            classpath 'com.android.tools.build:gradle:4.1.0' // used in subproject
        }
    }
    
    tasks.register('encode') {
        doLast {
            def byte[] encodedString = new Base64().encode('hello world\n'.getBytes())
            println new String(encodedString)
        }
    }
    ----
    
    And you can apply the globally declared dependencies in the subproject that needs it:
    
    [source,subproject/build.gradle]
    ----
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/internal/profile/encode.go

    	}
    	for _, x := range p.Mapping {
    		encodeMessage(b, 3, x)
    	}
    	for _, x := range p.Location {
    		encodeMessage(b, 4, x)
    	}
    	for _, x := range p.Function {
    		encodeMessage(b, 5, x)
    	}
    	encodeStrings(b, 6, p.stringTable)
    	encodeInt64Opt(b, 7, p.dropFramesX)
    	encodeInt64Opt(b, 8, p.keepFramesX)
    	encodeInt64Opt(b, 9, p.TimeNanos)
    	encodeInt64Opt(b, 10, p.DurationNanos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    	}
    	for _, x := range p.Mapping {
    		encodeMessage(b, 3, x)
    	}
    	for _, x := range p.Location {
    		encodeMessage(b, 4, x)
    	}
    	for _, x := range p.Function {
    		encodeMessage(b, 5, x)
    	}
    	encodeStrings(b, 6, p.stringTable)
    	encodeInt64Opt(b, 7, p.dropFramesX)
    	encodeInt64Opt(b, 8, p.keepFramesX)
    	encodeInt64Opt(b, 9, p.TimeNanos)
    	encodeInt64Opt(b, 10, p.DurationNanos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top