Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,270 for because3 (0.31 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

            // Should use cache second time
            resetExpectations()
    
            then:
            checkDependencies()
        }
    
        // because of the IvyModuleDescriptor rule
        @RequiredFeature(feature=GradleMetadataResolveRunner.REPOSITORY_TYPE, value="ivy")
        // because of branch
        @RequiredFeature(feature=GradleMetadataResolveRunner.GRADLE_METADATA, value="false")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. src/runtime/mspanset.go

    		}
    		// We failed to claim the spot we were after and the head changed,
    		// meaning a popper got ahead of us. Try again from the top because
    		// the buf may not be empty.
    	}
    	top, bottom := head/spanSetBlockEntries, head%spanSetBlockEntries
    
    	// We may be reading a stale spine pointer, but because the length
    	// grows monotonically and we've already verified it, we'll definitely
    	// be reading from a valid block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

          - Incompatible because this component declares attribute 'artifactType' with value 'jar', attribute 'flavor' with value 'free' and the consumer needed attribute 'artifactType' with value 'dll', attribute 'flavor' with value 'preview'
      - Configuration ':a:compile' variant paid declares attribute 'usage' with value 'compile':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            "1.+"                | "select status" | "1.1"         | '["1.2", "1.1"]' | ['1.2', '1.1']     | false           | true             | ["didn't match versions 2.1, 2.0", "rejection: 1.2 by rule because not milestone"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

            outputContains("present failed with: Cannot query the value of extension 'thing' property 'prop' because configuration of root project 'broken' has not completed yet.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

            mavenHttpRepo.module('org', 'moduleB', '1.0')
                .dependsOn(mavenHttpRepo.module("org", "moduleA", "1.0"), exclusions: [[group: '*', module: '*']])
                .publish() // no Gradle Module metadata for this one because we don't support excludes on dependencies
            repository {
                'org:moduleA:1.0' {
                    variants(["api", "runtime"]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/syscall/js/js.go

    			o.Set(k, v)
    		}
    		return o
    	default:
    		panic("ValueOf: invalid value")
    	}
    }
    
    // stringVal copies string x to Javascript and returns a ref.
    //
    // (noescape): This is safe because no references are maintained to the
    //             Go string x after the syscall returns.
    //
    //go:wasmimport gojs syscall/js.stringVal
    //go:noescape
    func stringVal(x string) ref
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            configurationCacheRunLenient()
    
            then: "the cache entry is invalidated and the created file is reported"
            configurationCache.assertStateStored()
            outputContains("because the file system entry '$testFileName' has been created")
    
            when: "the build is re-run with the file system entry still present"
            assert accessedFile.exists()
            configurationCacheRunLenient()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            def e = thrown(IllegalStateException)
            e.message == 'Cannot query the value of this property because it has no value available.'
    
            when:
            fileProvider.get()
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'Cannot query the value of this provider because it has no value available.'
    
            when:
            dir.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      @VisibleForTesting final transient @Nullable Object[] alternatingKeysAndValues;
      private final transient int size;
    
      /*
       * We have some considerable complexity in these create methods because of
       * Builder.buildKeepingLast(). The same Builder might be called with buildKeepingLast() and then
       * buildOrThrow(), or vice versa. So in particular, if we modify alternatingKeysAndValues to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top