Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for Mystring (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            protected final List<String> executedTasks;
            protected final Set<String> skippedTasks;
            private final ExecutionResult outputResult;
    
            InProcessExecutionResult(List<String> executedTasks, Set<String> skippedTasks, ExecutionResult outputResult) {
                this.executedTasks = executedTasks;
                this.skippedTasks = skippedTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. src/go/types/builtins.go

    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(x.typ, slice))
    		}
    
    	case _String:
    		// unsafe.String(ptr *byte, len IntegerType) string
    		check.verifyVersionf(call.Fun, go1_20, "unsafe.String")
    
    		check.assignment(x, NewPointer(universeByte), "argument to unsafe.String")
    		if x.mode == invalid {
    			return
    		}
    
    		y := args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            append("Ljava/lang/String;")
            append("I")
        }
        for (param in method.parameterList.parameters) {
            append(getBinaryPresentationWithCorrection(param.type))
        }
        append(")")
        append(getBinaryPresentationWithCorrection(method.returnType ?: PsiTypes.voidType()))
    }
    
    private fun getBinaryPresentationWithCorrection(psiType: PsiType): String =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/encoding/json/decode.go

    	}
    	return d.savedError
    }
    
    // A Number represents a JSON number literal.
    type Number string
    
    // String returns the literal text of the number.
    func (n Number) String() string { return string(n) }
    
    // Float64 returns the number as a float64.
    func (n Number) Float64() (float64, error) {
    	return strconv.ParseFloat(string(n), 64)
    }
    
    // Int64 returns the number as an int64.
    func (n Number) Int64() (int64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. src/encoding/binary/binary.go

    		byte(v>>24),
    		byte(v>>16),
    		byte(v>>8),
    		byte(v),
    	)
    }
    
    func (bigEndian) String() string { return "BigEndian" }
    
    func (bigEndian) GoString() string { return "binary.BigEndian" }
    
    func (nativeEndian) String() string { return "NativeEndian" }
    
    func (nativeEndian) GoString() string { return "binary.NativeEndian" }
    
    // Read reads structured binary data from r into data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

         *
         * @param separator The string by which to join each string representation
         * @param objects The objects to join the string representations of
         * @return The joined string
         */
        public static String join(String separator, Object[] objects) {
            return join(separator, objects == null ? null : Arrays.asList(objects));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. src/time/format_test.go

    	}
    	var got []byte
    	for _, tt := range tests {
    		got = AppendInt(got[:0], tt.in, tt.width)
    		if string(got) != tt.want {
    			t.Errorf("appendInt(%d, %d) = %s, want %s", tt.in, tt.width, got, tt.want)
    		}
    	}
    }
    
    type FormatTest struct {
    	name   string
    	format string
    	result string
    }
    
    var formatTests = []FormatTest{
    	{"ANSIC", ANSIC, "Wed Feb  4 21:00:57 2009"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. src/internal/trace/internal/oldtrace/parser.go

    	EvString:            {"String", 7, false, []string{}, nil},
    	EvGoStartLocal:      {"GoStartLocal", 7, false, []string{"g"}, nil},
    	EvGoUnblockLocal:    {"GoUnblockLocal", 7, true, []string{"g"}, nil},
    	EvGoSysExitLocal:    {"GoSysExitLocal", 7, false, []string{"g", "ts"}, nil},
    	EvGoStartLabel:      {"GoStartLabel", 8, false, []string{"g", "seq", "labelid"}, []string{"label"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. src/internal/trace/internal/testgen/go122/trace.go

    		gen:       g,
    		thread:    thread,
    		timestamp: time,
    	}
    	g.batches = append(g.batches, b)
    	return b
    }
    
    // String registers a string with the trace.
    //
    // This is a convenience function for easily adding correct
    // strings to traces.
    func (g *Generation) String(s string) uint64 {
    	if len(s) == 0 {
    		return 0
    	}
    	if id, ok := g.strings[s]; ok {
    		return id
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

        @Suppress("NOTHING_TO_INLINE")
        private inline fun buildPackageNamesSetFrom(vararg fqNameSets: Set<FqName>): Set<String> =
            buildSet {
                for (fqNameSet in fqNameSets) {
                    fqNameSet.mapTo(this, FqName::asString)
                }
            }
    
        override fun getTopLevelProperties(callableId: CallableId): Collection<KtProperty> =
            index.topLevelPropertyMap[callableId.packageName]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top