Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for fals (0.18 sec)

  1. test/fixedbugs/bug159.go

    	var a, b, c, x, y, z int;
    	f := func() int { b--; return -b };
    
    	// this fails on 6g: apparently it rewrites
    	// the list into
    	//	z = f();
    	//	y = f();
    	//	x = f();
    	// so that the values come out backward.
    	x, y, z = f(), f(), f();
    	if x != 1 || y != 2 || z != 3 {
    		println("xyz: expected 1 2 3 got", x, y, z);
    		ok = false;
    	}
    
    	// this fails on 6g too.  one of the function calls
    	// happens after assigning to b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 795 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutorsIntegrationTest.groovy

        }
    
        def "background job failure at configuration time fails build"() {
            given:
            buildFile << """
                def executors = $executors
                executors.userJobExecutor.execute {
                     throw new RuntimeException("Background job failed!")
                }
    
                task check {}
            """
    
            when:
            fails("check")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/context_test.go

    )
    
    func TestContextHashCollisions(t *testing.T) {
    	if debug {
    		t.Skip("hash collisions are expected, and would fail debug assertions")
    	}
    	// Unit test the de-duplication fall-back logic in Context.
    	//
    	// We can't test this via Instantiate because this is only a fall-back in
    	// case our hash is imperfect.
    	//
    	// These lookups and updates use reasonable looking types in an attempt to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 17 04:32:02 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

            and:
            succeeds 'copyFiles'
    
        }
    
        def "fails when a force overwrites a locked version"() {
            given:
            mavenRepo.module('org', 'test', '1.0').publish()
            mavenRepo.module('org', 'test', '1.1').publish()
    
            lockfileFixture.createLockfile('lockedConf', ['org:test:1.1'], false)
    
            buildFile << """
    dependencyLocking {
        lockAllConfigurations()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

        AtomicInteger existingCounter = Maps.safeGet(countMap, element);
        if (existingCounter == null) {
          return false;
        }
        while (true) {
          int oldValue = existingCounter.get();
          if (oldValue < occurrences) {
            return false;
          }
          int newValue = oldValue - occurrences;
          if (existingCounter.compareAndSet(oldValue, newValue)) {
            if (newValue == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyNotationIntegrationSpec.groovy

            succeeds 'checkDeps'
        }
    
        def "fails gracefully for invalid notations"() {
            when:
            buildFile <<  """
    configurations {
        conf
    }
    
    dependencies {
        conf 100
    }
    
    task checkDeps
    """
            then:
            fails 'checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:32 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/test-util_test.go

    	got, f, err := tpath.GetPathContext(node, util.PathFromString(pv.path), false)
    	if err != nil || !f {
    		return false, err
    	}
    	if reflect.TypeOf(got.Node) != reflect.TypeOf(pv.value) {
    		return false, fmt.Errorf("comparison types don't match: got %v(%T), want %v(%T)", got.Node, got.Node, pv.value, pv.value)
    	}
    	if !reflect.DeepEqual(got.Node, pv.value) {
    		return false, fmt.Errorf("values don't match: got %v, want %v", got.Node, pv.value)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. src/go/types/context_test.go

    )
    
    func TestContextHashCollisions(t *testing.T) {
    	if debug {
    		t.Skip("hash collisions are expected, and would fail debug assertions")
    	}
    	// Unit test the de-duplication fall-back logic in Context.
    	//
    	// We can't test this via Instantiate because this is only a fall-back in
    	// case our hash is imperfect.
    	//
    	// These lookups and updates use reasonable looking types in an attempt to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/dependencies/sub-dependencies.md

    === "Python 3.10 nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="6-7"
        {!> ../../../docs_src/dependencies/tutorial005_py310.py!}
        ```
    
    === "Python 3.8 nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="8-9"
        {!> ../../../docs_src/dependencies/tutorial005.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:09:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/CorePluginUseIntegrationSpec.groovy

        }
    
        void "core plugins cannot be used with apply false"() {
            given:
            buildScript """
                plugins {
                    id "java" apply false
                }
            """
    
            when:
            fails "help"
    
            then:
            failure.assertHasDescription("Error resolving plugin [id: 'java', apply: false]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top