Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 5,774 for rain (0.04 sec)

  1. src/runtime/testdata/testwinlibsignal/main.c

    {
        switch (fdwCtrlType)
        {
        case CTRL_BREAK_EVENT:
            SetEvent(waitForCtrlBreakEvent);
            return TRUE;
        default:
            return FALSE;
        }
    }
    
    int main(void)
    {
        waitForCtrlBreakEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
        if (!waitForCtrlBreakEvent) {
            fprintf(stderr, "ERROR: Could not create event\n");
            return 1;
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 13:21:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue20014.dir/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"sort"
    	"strings"
    
    	"issue20014.dir/a"
    )
    
    func main() {
    	samePackage()
    	crossPackage()
    
    	// Print fields registered with field tracking.
    	var fields []string
    	for _, line := range strings.Split(fieldTrackInfo, "\n") {
    		if line != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 19:48:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/toolingApi/eclipse/groovy/src/main/java/org/gradle/sample/Main.java

    import org.gradle.tooling.*;
    import org.gradle.tooling.model.*;
    import org.gradle.tooling.model.eclipse.*;
    
    import java.io.File;
    import java.lang.String;
    import java.lang.System;
    
    public class Main {
        public static void main(String[] args) {
            // Configure the connector and create the connection
            GradleConnector connector = GradleConnector.newConnector();
    
            if (args.length > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. test/typeparam/mincheck.dir/main.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./a"
    	"fmt"
    )
    
    func main() {
    	const want = 2
    	if got := a.Min[int](2, 3); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    
    	if got := a.Min(2, 3); got != want {
    		panic(fmt.Sprintf("want %d, got %d", want, got))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 04 19:07:27 UTC 2023
    - 925 bytes
    - Viewed (0)
  5. security/tools/generate_csr/main.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Provide a tool to generate X.509 CSR with different options.
    
    package main
    
    import (
    	"flag"
    	"fmt"
    	"os"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/src/main/c/main.c

    #include "hello.h"
    
    int main () {
      hello();
      return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 59 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/main/cpp/main.cpp

    #include "hello.h"
    
    int main () {
      hello();
      return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 59 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/groovy/ast-transformation-consumer/src/main/groovy/Main.groovy

    @MyAnnotation
    class Main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 29 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/kotlin/ast-transformation-consumer/src/main/groovy/Main.groovy

    @MyAnnotation
    class Main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 29 bytes
    - Viewed (0)
  10. src/cmd/link/testdata/testBuildFortvOS/main.m

    extern void GoFunc();
    
    int main(int argc, char **argv) {
    	GoFunc();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 23 15:31:01 UTC 2020
    - 70 bytes
    - Viewed (0)
Back to top