Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for Mystring (0.26 sec)

  1. src/cmd/compile/internal/types2/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.1K bytes
    - Viewed (0)
  2. 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)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        }
    
        @CompileStatic
        private void expectRedirected(String method, String path, String location, PasswordCredentials credentials, RedirectType redirectType) {
            expect(path, false, [method], redirectTo(location, redirectType), credentials)
        }
    
        @CompileStatic
        private void forbidRedirected(String method, String path, String location, RedirectType redirectType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. 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)
  5. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

        }
    
        static class StressHttpServer extends ExternalResource {
            private static final String GET_METHOD = 'GET'
            private static final String HEAD_METHOD = 'HEAD'
            private static final String METADATA_FILE_PATH = '/org.gradle/changing/1.0/ivy-1.0.xml'
            private static final String JAR_FILE_PATH = '/org.gradle/changing/1.0/changing-1.0.jar'
            private final Server server = new Server(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top