Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 234 for OUT (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

            override fun writeExternal(out: ObjectOutput) {
                out.writeInt(value)
            }
    
            override fun readExternal(`in`: ObjectInput) {
                value = `in`.readInt()
            }
        }
    
        class ExternalizableBeanContainingSerializable(value: Int = 0, var child: Pair<Int, String>? = null) : ExternalizableBean(value) {
            override fun writeExternal(out: ObjectOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

    // Ignore test on non-Windows platforms on CI since Playwright has unfulfilled package
    // dependencies on Linux and times out downloading the driver on MacOS.
    //
    // Comment out the @Requires annotation below to run the test locally on non Windows platforms.
    @Requires(UnitTestPreconditions.Windows)
    @Flaky(because = "https://github.com/gradle/gradle-private/issues/3820")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

    # Writes debugging information, such as Windows version and patch info, to the
    # console.
    function Dump-DebugInfoToConsole {
      Try {
        $version = Get_WindowsVersion | Out-String
        $hotfixes = "$(Get-Hotfix | Out-String)"
        $image = "$(Get-InstanceMetadata 'image' | Out-String)"
        Log-Output "Windows version:`n$version"
        Log-Output "Installed hotfixes:`n$hotfixes"
        Log-Output "GCE Windows image:`n$image"
      } Catch { }
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. releasenotes/notes/ns-filter.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 186 bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            } finally {
                CompositeStoppable.stoppable(daemon, daemonProcessState).stop();
            }
        }
    
        private static void invalidArgs(String message) {
            System.out.println("USAGE: <gradle version>");
            System.out.println(message);
            System.exit(1);
        }
    
        protected void daemonStarted(Long pid, String uid, Address address, File daemonLog) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    				o := obj.(metav1.Object)
    				key := fmt.Sprintf("/testing/testkey/%s", o.GetName())
    				out := tc.newObjectFunc(i, tc.objectNum, tc.expectNum)
    				if err := store.Create(ctx, key, obj, out, 0); err != nil {
    					b.Fatalf("Set failed: %v", err)
    				}
    				originalRevision = out.(metav1.Object).GetResourceVersion()
    			}
    
    			// prepare result and pred
    			pred := storage.SelectionPredicate{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

    TIMEZONE=$(readlink "$readlink_flags" /etc/localtime | sed -e 's/^.*zoneinfo\///')
    
    TARGET_OUT="${TARGET_OUT:-$(pwd)/out/${TARGET_OS}_${TARGET_ARCH}}"
    TARGET_OUT_LINUX="${TARGET_OUT_LINUX:-$(pwd)/out/linux_${TARGET_ARCH}}"
    
    CONTAINER_TARGET_OUT="${CONTAINER_TARGET_OUT:-/work/out/${TARGET_OS}_${TARGET_ARCH}}"
    CONTAINER_TARGET_OUT_LINUX="${CONTAINER_TARGET_OUT_LINUX:-/work/out/linux_${TARGET_ARCH}}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    			}
    		}
    		var out []byte
    		out, err = sh.runOut(p.Dir, nil, b.PkgconfigCmd(), "--cflags", pcflags, "--", pkgs)
    		if err != nil {
    			desc := b.PkgconfigCmd() + " --cflags " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
    			return nil, nil, sh.reportCmd(desc, "", out, err)
    		}
    		if len(out) > 0 {
    			cflags, err = splitPkgConfigOutput(bytes.TrimSpace(out))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		name                    string
    		writeKubeConfigFunction func(out io.Writer) error
    	}{
    		{
    			name: "WriteKubeConfigWithClientCert",
    			writeKubeConfigFunction: func(out io.Writer) error {
    				return WriteKubeConfigWithClientCert(out, cfg, "myUser", []string{"myOrg"}, notAfter)
    			},
    		},
    		{
    			name: "WriteKubeConfigWithToken",
    			writeKubeConfigFunction: func(out io.Writer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            testDirectory.file('out/reports/configuration-cache').isDirectory()
            resolveConfigurationCacheReportDirectory(testDirectory.file('out'), output) == null
        }
    
        def "link to report is shown with --info if there are no-CC problems"() {
            def reportDir = testDirectory.file('out/reports/configuration-cache')
            file("build.gradle") << """
                buildDir = 'out'
                tasks.register('doIt') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top