Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 314 for Empties (0.11 sec)

  1. src/cmd/compile/internal/types/alg.go

    // hashing a Type.
    type AlgKind int8
    
    //go:generate stringer -type AlgKind -trimprefix A alg.go
    
    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

            then:
            result.assertTasksExecuted(":a:thing", ":b:thing", ":a:a:thing", ":b:b:thing")
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "stops traversing sub-projects when task implies sub-projects"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
                subprojects {
                    task thing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/go/build/constraint/vers.go

    		op := orVersion
    		if sign < 0 {
    			op = andVersion
    		}
    		return op(minVersion(z.X, sign), minVersion(z.Y, sign))
    	case *NotExpr:
    		return minVersion(z.X, -sign)
    	case *TagExpr:
    		if sign < 0 {
    			// !foo implies nothing
    			return -1
    		}
    		if z.Tag == "go1" {
    			return 0
    		}
    		_, v, _ := strings.Cut(z.Tag, "go1.")
    		n, err := strconv.Atoi(v)
    		if err != nil {
    			// not a go1.N tag
    			return -1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            where:
            version << SUPPORTED_WITH_GRADLE_8_CONFIGURATION_CACHE
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Isolated projects implies config cache")
        def "can use plugin #version with isolated projects"() {
            given:
            def versionNumber = VersionNumber.parse(version)
    
            when:
            usePluginVersion version
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

         *
         * This method keeps the invariant that the version of a child is bigger than the version of the parent.
         * This is because modifying the parent implies that all of its children have been modified, so they need to have at least the same version.
         *
         * @param newVersion The new version. Must be bigger than the current maximum version in this hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    		// Only report early in file.
    		if check.plusBuildOK && !strings.HasPrefix(line, "// want") {
    			check.pass.Reportf(pos, "possible malformed +build comment")
    		}
    		return
    	}
    	if !check.plusBuildOK { // inStar implies !plusBuildOK
    		check.pass.Reportf(pos, "misplaced +build comment")
    		check.crossCheck = false
    	}
    
    	if check.plusBuildPos == token.NoPos {
    		check.plusBuildPos = pos
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Predicate.java

       *
       * <ul>
       *   <li>Its execution does not cause any observable side effects.
       *   <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal
       *       Objects.equal}{@code (a, b)} implies that {@code predicate.apply(a) ==
       *       predicate.apply(b))}.
       * </ul>
       *
       * @throws NullPointerException if {@code input} is null and this predicate does not accept null
       *     arguments
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/runtime/arena_test.go

    			t.Fatal("finalizer queue was never emptied")
    		}
    	} else {
    		// Free the arena explicitly.
    		arena.Free()
    	}
    
    	// Try to queue the object's finalizer that we set earlier.
    	GC()
    	GC()
    
    	if !BlockUntilEmptyFinalizerQueue(int64(2 * time.Second)) {
    		t.Fatal("finalizer queue was never emptied")
    	}
    	if !finalized.Load() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Predicate.java

       *
       * <ul>
       *   <li>Its execution does not cause any observable side effects.
       *   <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal
       *       Objects.equal}{@code (a, b)} implies that {@code predicate.apply(a) ==
       *       predicate.apply(b))}.
       * </ul>
       *
       * @throws NullPointerException if {@code input} is null and this predicate does not accept null
       *     arguments
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

            then:
            result.assertTasksExecuted ':b'
    
            when:
            configurationCacheRun 'b'
    
            then:
            result.assertTasksExecuted ':b'
        }
    
        def "finalizedBy implies dependency"() {
            given:
            buildFile << '''
                task a
                task b { finalizedBy a }
            '''
    
            when:
            configurationCacheRun 'b'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top