Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 5,774 for rain (0.05 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/groovy/src/main/java/Main.java

    import org.apache.commons.beanutils.PropertyUtils;
    
    public class Main {
        public static void main(String[] args) throws Exception {
            Object person = new Person();
            PropertyUtils.setSimpleProperty(person, "name", "Bart Simpson");
            PropertyUtils.setSimpleProperty(person, "age", 38);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 313 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testlife/testdata/main.go

    //go:build test_run
    
    // Run the game of life in C using Go for parallelization.
    
    package main
    
    import (
    	"flag"
    	"fmt"
    
    	"cgolife"
    )
    
    const MAXDIM = 100
    
    var dim = flag.Int("dim", 16, "board dimensions")
    var gen = flag.Int("gen", 10, "generations")
    
    func main() {
    	flag.Parse()
    
    	var a [MAXDIM * MAXDIM]int32
    	for i := 2; i < *dim; i += 8 {
    		for j := 2; j < *dim-3; j += 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 803 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/main.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package main
    
    import (
    	"os"
    
    	"k8s.io/apiextensions-apiserver/pkg/cmd/server"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	"k8s.io/component-base/cli"
    )
    
    func main() {
    	ctx := genericapiserver.SetupSignalContext()
    	cmd := server.NewServerCommand(ctx, os.Stdout, os.Stderr)
    	code := cli.Run(cmd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 888 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/src/main/c/main.c

    #include <stdio.h>
    #include "sum.h"
    
    int main () {
      int x = sum(5, 7);
      printf("5 + 7 = %d\n", x);
      return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/testdata/issue26237/main/main.go

    package main
    
    import (
    	"fmt"
    
    	b "cmd/link/internal/ld/testdata/issue26237/b.dir"
    )
    
    var skyx int
    
    func main() {
    	skyx += b.OOO(skyx)
    	if b.Top(1) == 99 {
    		fmt.Printf("Beware the Jabberwock, my son!\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:11 UTC 2019
    - 210 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/application/groovy/src/main/java/org/gradle/sample/Main.java

    package org.gradle.sample;
    
    public class Main {
        public static void main(String[] args) {
            if (System.getProperty("greeting.language").equals("en")) {
                System.out.println("Greetings from the sample application.");
            } else {
                System.out.println("Bonjour, monde!");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/testdata/issue38192/main.go

    // Copyright 2020 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
    
    func singleInstruction()
    
    func main() {
    	singleInstruction()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 03 18:03:41 UTC 2020
    - 237 bytes
    - Viewed (0)
  8. test/typeparam/issue48280.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"
    
    func main() {
    	_ = a.S{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 215 bytes
    - Viewed (0)
  9. cni/cmd/istio-cni/main.go

    // parses prevResult according to the cniVersion
    package main
    
    import (
    	"fmt"
    	"os"
    
    	"github.com/containernetworking/cni/pkg/skel"
    	"github.com/containernetworking/cni/pkg/version"
    
    	"istio.io/istio/cni/pkg/plugin"
    	"istio.io/istio/pkg/log"
    	istioversion "istio.io/istio/pkg/version"
    )
    
    func main() {
    	if err := runPlugin(); err != nil {
    		os.Exit(1)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. test/typeparam/issue47775.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 "./b"
    
    func main() {
    	b.New[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 218 bytes
    - Viewed (0)
Back to top