Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for NEW (0.25 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleDependencyTest.groovy

        def equality() {
            expect:
            new ModuleDependency("a", null).equals(new ModuleDependency("a", "COMPILE"))
            new ModuleDependency("a", "").equals(new ModuleDependency("a", "COMPILE"))
            new ModuleDependency("a", "COMPILE").equals(new ModuleDependency("a", ""))
            new ModuleDependency("a", "COMPILE").equals(new ModuleDependency("a", null))
            new ModuleDependency("a", "").equals(new ModuleDependency("a", ""))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            adapter.started(root, new TestStartEvent(100L))
            adapter.started(suite1, new TestStartEvent(100L, 'root'))
            adapter.started(ok, new TestStartEvent(100L, 'suite1'))
            adapter.started(suite2, new TestStartEvent(100L, 'root'))
            adapter.completed('ok', new TestCompleteEvent(200L))
            adapter.completed('suite1', new TestCompleteEvent(200L))
            adapter.started(broken, new TestStartEvent(100L, 'suite2'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        final AbstractFuture<String> future = new AbstractFuture<String>() {};
        WaiterThread waiter = new WaiterThread(future);
        waiter.start();
        waiter.awaitWaiting();
        PollingThread poller = new PollingThread(future);
        poller.start();
        PollingThread poller2 = new PollingThread(future);
        poller2.start();
        PollingThread poller3 = new PollingThread(future);
        poller3.start();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

            registration.addProvider(new GlobalScopeServices());
        }
    
        @Override
        public void registerGradleUserHomeServices(ServiceRegistration registration) {
            registration.addProvider(new GradleUserHomeServices());
        }
    
        @Override
        public void registerBuildSessionServices(ServiceRegistration registration) {
            registration.addProvider(new BuildSessionServices());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

            BaseSerializerFactory factory = new BaseSerializerFactory();
            DefaultSerializerRegistry registry = new DefaultSerializerRegistry();
            registry.register(DefaultTestClassRunInfo.class, new DefaultTestClassRunInfoSerializer());
            registry.register(CompositeIdGenerator.CompositeId.class, new IdSerializer());
            registry.register(DefaultNestedTestSuiteDescriptor.class, new DefaultNestedTestSuiteDescriptorSerializer());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. 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)
Back to top