Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 334 for Mystring (0.29 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.String -> CompileTimeType.STRING
    
                else -> CompileTimeType.ANY
            }
        }
    
        // Unary operators
        private fun FirLiteralExpression.evaluate(function: FirSimpleFunction): FirLiteralExpression? {
            if (value == null) return null
            (value as? String)?.let { opr ->
                evalUnaryOp(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.resources.TextResource.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>asString</td>
                </tr>
                <tr>
                    <td>asReader</td>
                </tr>
                <tr>
                    <td>asFile</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/dec.rules

    (ArraySelect [i] x:(Load <t> ptr mem)) =>
      @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.Elem().Size()*i] ptr) mem)
    
    (StringPtr x:(Load <t> ptr mem)) && t.IsString() => @x.Block (Load <typ.BytePtr> ptr mem)
    (StringLen x:(Load <t> ptr mem)) && t.IsString() => @x.Block (Load <typ.Int>
          (OffPtr <typ.IntPtr> [config.PtrSize] ptr)
          mem)
    
    // NOTE removed must-not-be-SSA condition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. operator/pkg/validate/common.go

    	scope.Debugf("validatePortNumberString %v:", val)
    	if !util.IsString(val) {
    		return util.NewErrs(fmt.Errorf("validatePortNumberString(%s) bad type %T, want string", path, val))
    	}
    	if val.(string) == "*" || val.(string) == "" {
    		return nil
    	}
    	intV, err := strconv.ParseInt(val.(string), 10, 32)
    	if err != nil {
    		return util.NewErrs(fmt.Errorf("%s : %s", path, err))
    	}
    	return validatePortNumber(path, intV)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            then:
            looksLike('<things>\n  <thing foo="bar"/>\n</things>', writer.toString())
        }
    
        private void looksLike(String expected, String actual) {
            assert removeTrailingWhitespace(actual) == removeTrailingWhitespace(TextUtil.toPlatformLineSeparators("<?xml version=\"1.0\"?>\n" + expected))
        }
    
        private void looksLike(String expected, byte[] actual) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. operator/pkg/util/k8s.go

    	"istio.io/api/label"
    	iopv1alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/kube"
    )
    
    // GKString differs from default representation of GroupKind
    func GKString(gvk schema.GroupKind) string {
    	return fmt.Sprintf("%s/%s", gvk.Group, gvk.Kind)
    }
    
    // ValidateIOPCAConfig validates if the IstioOperator CA configs are applicable to the K8s cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/resources/org/gradle/api/resource/TextResourceIntegrationTest/shared/build.gradle

    class MyTask extends DefaultTask {
        @Nested
        TextResource config
    
        @OutputFile
        File output
    
        @TaskAction
        void generate() {
            getOutput().text = getConfig().asString()
        }
    }
    
    def generateConfigFile = tasks.register("generateConfigFile") {
        outputs.file "config.txt"
        doLast {
            file("config.txt").text = "my config"
        }
    }
    
    task generateConfigZip(type: Zip) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 27 20:48:11 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. src/internal/testpty/pty_cgo.go

    func open() (pty *os.File, processTTY string, err error) {
    	m, err := C.posix_openpt(C.O_RDWR)
    	if m < 0 {
    		return nil, "", ptyError("posix_openpt", err)
    	}
    	if res, err := C.grantpt(m); res < 0 {
    		C.close(m)
    		return nil, "", ptyError("grantpt", err)
    	}
    	if res, err := C.unlockpt(m); res < 0 {
    		C.close(m)
    		return nil, "", ptyError("unlockpt", err)
    	}
    	processTTY = C.GoString(C.ptsname(m))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 18:38:54 UTC 2023
    - 840 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            return actionExecution.empty ? null : Iterables.getOnlyElement(actionExecution)
        }
    
        String buildCacheKeyFor(String identity) {
            def execution = transformExecutions.find { it.details.identity == identity }
            def snapshotExecution = snapshotInputsOperation(execution).result
            return snapshotExecution.hash as String
        }
    
        void enableIdentityCache() {
            // So we don't get a daemon from another test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/debug/macho/macho.go

    var typeStrings = []intName{
    	{uint32(TypeObj), "Obj"},
    	{uint32(TypeExec), "Exec"},
    	{uint32(TypeDylib), "Dylib"},
    	{uint32(TypeBundle), "Bundle"},
    }
    
    func (t Type) String() string   { return stringName(uint32(t), typeStrings, false) }
    func (t Type) GoString() string { return stringName(uint32(t), typeStrings, true) }
    
    // A Cpu is a Mach-O cpu type.
    type Cpu uint32
    
    const cpuArch64 = 0x01000000
    
    const (
    	Cpu386   Cpu = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top