Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for could (0.32 sec)

  1. src/cmd/go/internal/modget/get.go

    				// could plausibly mean “downgrade away everything that depends on any
    				// explicit version of the main module”, or “downgrade away the
    				// package with the same path as the main module, found in a module
    				// with a prefix of the main module's path”.
    				//
    				// However, neither of those behaviors would be consistent with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    	"cmd/internal/src"
    	"fmt"
    	"math"
    )
    
    type branch int
    
    const (
    	unknown branch = iota
    	positive
    	negative
    	// The outedges from a jump table are jumpTable0,
    	// jumpTable0+1, jumpTable0+2, etc. There could be an
    	// arbitrary number so we can't list them all here.
    	jumpTable0
    )
    
    // relation represents the set of possible relations between
    // pairs of variables (v, w). Without a priori knowledge the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      //   system scheduling and as such we could either miss our deadline, or unpark() could be delayed
      //   so that it looks like we timed out even though we didn't. For comparison FutureTask respects
      //   completion preferably and AQS is non-deterministic (depends on where in the queue the waiter
      //   is). If we wanted to be strict about it, we could store the unpark() time in the Waiter node
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      //   system scheduling and as such we could either miss our deadline, or unpark() could be delayed
      //   so that it looks like we timed out even though we didn't. For comparison FutureTask respects
      //   completion preferably and AQS is non-deterministic (depends on where in the queue the waiter
      //   is). If we wanted to be strict about it, we could store the unpark() time in the Waiter node
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            failure.assertHasFailures(1)
            failure.assertHasFileName("Build file '${buildFile.absolutePath}'")
            failure.assertHasLineNumber(4)
            failure.assertHasDescription("Configuration cache state could not be cached: field `prop` of task `:broken` of type `BrokenTaskType`: error writing value of type 'BrokenSerializable'")
            failure.assertHasCause("BOOM")
            problems.assertResultHasProblems(failure)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    		// altMods is a set of paths of modules that lexically could have provided
    		// imported packages. It may be okay to remove these from the list of
    		// explicit requirements if that removes them from the module graph. If they
    		// are present in the module graph reachable from rootPaths, they must not
    		// be at a lower version. That could cause a missing sum error or a new
    		// import ambiguity.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    			// pkg resolved successfully, but errors out using the requirements in rs.
    			//
    			// This could occur because the import is provided by a single root (and
    			// is thus unambiguous in a main module with a pruned module graph) and
    			// also one or more transitive dependencies (and is ambiguous with an
    			// unpruned graph).
    			//
    			// It could also occur because some transitive dependency upgrades the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeToken.java

       * passing a TypeToken<X>. This would be invalid. Maybe we could accept a TypeParameter<@PolyNull
       * X> if we support such a thing? It would be weird or misleading for users to be able to pass
       * `new TypeParameter<@Nullable T>() {}` and have it act as a plain `TypeParameter<T>`, but
       * hopefully no one would do that, anyway. See also the comment on TypeParameter itself.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeToken.java

       * passing a TypeToken<X>. This would be invalid. Maybe we could accept a TypeParameter<@PolyNull
       * X> if we support such a thing? It would be weird or misleading for users to be able to pass
       * `new TypeParameter<@Nullable T>() {}` and have it act as a plain `TypeParameter<T>`, but
       * hopefully no one would do that, anyway. See also the comment on TypeParameter itself.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    		if !p.got(sep) && p.tok != close {
    			p.syntaxError(fmt.Sprintf("in %s; possibly missing %s or %s", context, tokstring(sep), tokstring(close)))
    			p.advance(_Rparen, _Rbrack, _Rbrace)
    			if p.tok != close {
    				// position could be better but we had an error so we don't care
    				return p.pos()
    			}
    		}
    	}
    
    	pos := p.pos()
    	p.want(close)
    	return pos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top