Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,860 for printsp (0.27 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/process/TestJavaMain.java

            if (args.length > 0) {
                System.out.println("ARGUMENTS: " + String.join(" ", args));
            }
            System.out.println("ENVIRONMENT:");
            printMap(System.getenv(), "TEST_");
    
            System.out.println("PROPERTIES:");
            printMap(System.getProperties(), "test.");
        }
    
        private static void printMap(Map<?, ?> items, String prefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

                        try {
                            configurations.lax.files
                        } catch (Exception e) {
                            println "Lax failure swallowed"
                        }
    
                        // Try to resolve configuration "lax" again - this exception is printed
                        configurations.lax.files
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. hack/print-workspace-status.sh

    # build stamping with git information.
    #
    # It is still useful for obtaining kube::version::get_version_vars without
    # sourcing Kubernetes build internals.
    #
    # Usage: `hack/print-workspace-status.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/hack/lib/version.sh"
    kube::version::get_version_vars
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 06 11:19:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/org/gradle/sample/app/Main.java

            Object copy = BeanUtils.cloneBean(message);
            System.out.println();
            System.out.println("Original: " + copy.toString());
            System.out.println("Copy:     " + copy.toString());
    
        }
    
        private static void printModuleDebug(Class<?> clazz) {
            System.out.println(clazz.getModule().getName() + " - " + clazz.getModule().getDescriptor().version().get());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    		table := &metav1.Table{
    			ColumnDefinitions: test.columns,
    			Rows:              test.rows,
    		}
    		// Print the table
    		out := bytes.NewBuffer([]byte{})
    		printer := NewTablePrinter(test.options)
    		printer.PrintObj(table, out)
    
    		// Validate the printed table is empty.
    		if len(out.String()) > 0 {
    			t.Errorf("Error Printing Table. Should be empty; got (%s)", out.String())
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/plan.go

    	_, _ = printer.Fprintln(writer, "")
    
    	if beforeKubeadmVersion != afterKubeadmVersion {
    		_, _ = printer.Fprintf(writer, "Note: Before you can perform this upgrade, you have to update kubeadm to %s.\n", afterKubeadmVersion)
    		_, _ = printer.Fprintln(writer, "")
    	}
    
    	printer.printLineSeparator(writer)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. test/fixedbugs/bug148.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type T struct {a, b int};
    
    func println(x, y int) { }
    
    func f(x interface{}) interface{} {
    	type T struct {a, b int};
    
    	if x == nil {
    		return T{2, 3};
    	}
    
    	t := x.(T);
    	println(t.a, t.b);
    	return x;
    }
    
    func main() {
    	inner_T := f(nil);
    	f(inner_T);
    
    	shouldPanic(p1)
    }
    
    func p1() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 750 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
    
            @Override
            public void writeCodeTo(PrettyPrinter printer) {
                if (catalogReference) {
                    printer.println(printer.syntax.dependencySpec(configuration, dependencyOrCatalogReference));
                } else {
                    printer.println(printer.syntax.dependencySpec(configuration, printer.syntax.string(dependencyOrCatalogReference)));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
Back to top