Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 123 for segs (0.06 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

            buildFile << """
                scaladoc.maxMemory = '234M'
            """
            when:
            succeeds scaladoc, "-i"
    
            then:
            // Looks like
            // Started Gradle worker daemon (0.399 secs) with fork options DaemonForkOptions{executable=/Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java, minHeapSize=null, maxHeapSize=234M, jvmArgs=[], keepAliveMode=DAEMON}.
            outputContains("maxHeapSize=234M")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. test/chan/select3.go

    		select {
    		case x, ok := (<-closedch):
    			_, _ = x, ok
    		}
    	})
    	testPanic(always, func() {
    		select {
    		case closedch <- 7:
    		}
    	})
    
    	// select should not get confused if it sees itself
    	testBlock(always, func() {
    		c := make(chan int)
    		select {
    		case c <- 1:
    		case <-c:
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 08 02:10:12 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/glob_lit_test.bzl

    ]
    
    def _run_lit_test(name, data, size, tags, driver, features, exec_properties):
        """Runs lit on all tests it can find in `data` under tensorflow/compiler/mlir.
    
        Note that, due to Bazel's hermetic builds, lit only sees the tests that
        are included in the `data` parameter, regardless of what other tests might
        exist in the directory searched.
    
        Args:
          name: str, the name of the test, including extension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/JavaModuleCompileIntegrationTest.groovy

                package auto;
    
                public class AutoClass {
                    public void m() {
                        // can access, because a auto module sees the unnamed module
                        new moda.ModaClass();
                        new moda.internal.ModaClassInternal();
                    }
                }
            """
    
            // Local module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/v1alpha1/defaults.go

    	}
    	if obj.Conntrack.TCPCloseWaitTimeout == nil {
    		// See https://github.com/kubernetes/kubernetes/issues/32551.
    		//
    		// CLOSE_WAIT conntrack state occurs when the Linux kernel
    		// sees a FIN from the remote server. Note: this is a half-close
    		// condition that persists as long as the local side keeps the
    		// socket open. The condition is rare as it is typical in most
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ComponentMetadataDetailsAdapterTest.groovy

        private MutableMavenModuleResolveMetadata mavenComponentMetadata() {
            mavenMetadataFactory.create(componentIdentifier, [])
        }
    
        def setup() {
            schema.attribute(testAttribute)
        }
    
        def "sees variants defined in Gradle metadata"() {
            given:
            def rule = Mock(Action)
    
            when:
            adapterOnGradleMetadata.withVariant("variantDefinedInGradleMetadata1", rule)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

     * - A different version of swiftc is used
     * - Different compiler arguments are used
     *
     * We work around issues with timestamps by changing module.swiftdeps and setting any changed files to
     * a timestamp of 0.  swiftc then sees those source files as different from the last compilation.
     *
     * If we have any issues reading or writing the swiftdeps file, we bail out and disable incremental compilation.
     */
    @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/sync/waitgroup.go

    // at any time.
    // Typically this means the calls to Add should execute before the statement
    // creating the goroutine or other event to be waited for.
    // If a WaitGroup is reused to wait for several independent sets of events,
    // new Add calls must happen after all previous Wait calls have returned.
    // See the WaitGroup example.
    func (wg *WaitGroup) Add(delta int) {
    	if race.Enabled {
    		if delta < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/kube/kclient/index_test.go

    		return []string{pod.Spec.ServiceAccountName}
    	}, controllers.EventHandler[*corev1.Pod]{
    		AddFunc: func(obj *corev1.Pod) {
    			// Assert that our handler sees the incoming update (and doesn't run before)
    			sa := obj.Spec.ServiceAccountName
    			got := index.Lookup(sa)
    			for _, p := range got {
    				if p.Name == obj.Name {
    					adds.Inc()
    					return
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	}
    
    	// sub/plugin1.so is a different plugin with the same name as
    	// the already loaded plugin. It also depends on common. Test
    	// that we can load the different plugin, it is actually
    	// different, and that it sees the same common package.
    	subpPath, err := filepath.Abs("sub/plugin1.so")
    	if err != nil {
    		log.Fatalf("filepath.Abs(%q) failed: %v", subpPath, err)
    	}
    	subp, err := plugin.Open(subpPath)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top