Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for NEW (0.12 sec)

  1. src/cmd/go/testdata/script/goroot_executable.txt

    symlink $WORK/other/bin/go$GOEXE -> $WORK/new/bin/go$GOEXE
    exec $WORK/bin/check$GOEXE $WORK/new/bin/go$GOEXE $WORK/new
    
    rm $WORK/new/pkg
    
    # Runtime GOROOT:
    # Binaries built in the new tree should report the
    # new tree when they call runtime.GOROOT.
    symlink $WORK/new/src -> $TESTGOROOT/src
    symlink $WORK/new/pkg -> $TESTGOROOT/pkg
    exec $WORK/new/bin/go$GOEXE run check_runtime_goroot.go $WORK/new
    
    -- check.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/stream/EncodedStreamTest.groovy

            def outputStream = new ByteArrayOutputStream()
            def encoder = new EncodedStream.EncodedOutput(outputStream)
    
            when:
            encoder.write("this is some content".bytes)
            encoder.flush()
    
            then:
            def inputStream = new ByteArrayInputStream(outputStream.toByteArray())
            def decoder = new EncodedStream.EncodedInput(inputStream)
            def content = decoder.bytes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1/zz_generated.deepcopy.go

    		*out = new(string)
    		**out = **in
    	}
    	if in.Zone != nil {
    		in, out := &in.Zone, &out.Zone
    		*out = new(string)
    		**out = **in
    	}
    	if in.Hints != nil {
    		in, out := &in.Hints, &out.Hints
    		*out = new(EndpointHints)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Endpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFile.java

            return addOption(new StringsJavadocOptionFileOption(option, new ArrayList<>(), joinBy));
        }
    
        public JavadocOptionFileOption<List<String>> addMultilineStringsOption(String option) {
            return addOption(new MultilineStringsJavadocOptionFileOption(option, new ArrayList<>()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

        final fileReferenceFactory = new FileReferenceFactory()
        final customEntries = [
            new ProjectDependency("/test2"),
            new Container("org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"),
            new Library(fileReferenceFactory.fromPath("/apache-ant-1.7.1/lib/ant-antlr.jar")),
            new SourceFolder("src", "bin2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1beta1/zz_generated.deepcopy.go

    		in, out := &in.Name, &out.Name
    		*out = new(string)
    		**out = **in
    	}
    	if in.Protocol != nil {
    		in, out := &in.Protocol, &out.Protocol
    		*out = new(v1.Protocol)
    		**out = **in
    	}
    	if in.Port != nil {
    		in, out := &in.Port, &out.Port
    		*out = new(int32)
    		**out = **in
    	}
    	if in.AppProtocol != nil {
    		in, out := &in.AppProtocol, &out.AppProtocol
    		*out = new(string)
    		**out = **in
    	}
    	return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/SnapshotSerializerTest.groovy

            value == written
    
            where:
            array << [
                new byte[]{42},
                new short[]{42},
                new int[]{42},
                new long[]{42},
                new float[]{42.0},
                new double[]{42.0},
                new char[]{'*'},
                new boolean[]{true}
            ]
            value = new ArrayOfPrimitiveValueSnapshot(array)
        }
    
        def "serializes list properties"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

     *
     * @author Jared Levy
     */
    @GwtIncompatible
    public class TestsForQueuesInJavaUtil {
      public static Test suite() {
        return new TestsForQueuesInJavaUtil().allTests();
      }
    
      public Test allTests() {
        TestSuite suite = new TestSuite();
        suite.addTest(testsForArrayDeque());
        suite.addTest(testsForLinkedList());
        suite.addTest(testsForArrayBlockingQueue());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                "new File(\"${filePath}\").$checkKind()"
            }
    
            @Override
            String getJavaExpression() {
                "new File(\"${filePath}\").$checkKind()"
            }
        }
    
        static FileCheck fileExists(String filePath) {
            new FileCheck(filePath, "exists")
        }
    
        static FileCheck fileIsFile(String filePath) {
            new FileCheck(filePath, "isFile")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java

        hasher.putShort((short) 0x0201);
        hasher.assertBytes(new byte[] {1, 2});
      }
    
      public void testInt() {
        TestHasher hasher = new TestHasher();
        hasher.putInt(0x04030201);
        hasher.assertBytes(new byte[] {1, 2, 3, 4});
      }
    
      public void testLong() {
        TestHasher hasher = new TestHasher();
        hasher.putLong(0x0807060504030201L);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top