Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,316 for necessarily (0.38 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

        }
    
        // Ignore this check for TestOperationDescriptors as they are currently not unique when coming from different test tasks
        // Ignore resolve artifact operations as they are not necessarily unique atm
        boolean uniqueBuildOperation(OperationDescriptor operationDescriptor) {
            return !(operationDescriptor instanceof TestOperationDescriptor) && !operationDescriptor.displayName.startsWith("Resolve artifact ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

            and:
            resolveRuntimeArtifacts(javaLibrary) {
                expectFiles "foo-1.0.jar", "publishTest-1.9.jar"
            }
    
        }
    
        // This test documents the existing behavior, not necessarily the best one
        def "import scope makes use of runtime classpath"() {
            javaLibrary(mavenRepo.module("org.test", "foo", "1.0")).withModuleMetadata().publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. src/math/rand/v2/rand.go

    	// We can simulate a scaling arbitrary precision x * (n/2⁶⁴) by
    	// the high bits of a double-width multiply of x*n, meaning (x*n)/2⁶⁴.
    	// Since there are 2⁶⁴ possible inputs x and only n possible outputs,
    	// the output is necessarily biased if n does not divide 2⁶⁴.
    	// In general (x*n)/2⁶⁴ = k for x*n in [k*2⁶⁴,(k+1)*2⁶⁴).
    	// There are either floor(2⁶⁴/n) or ceil(2⁶⁴/n) possible products
    	// in that range, depending on k.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	}
    }
    
    // addDFphis creates new trivial phis that are necessary to correctly reflect (within SSA)
    // a new definition for variable "x" inserted at h (usually but not necessarily a phi).
    // These new phis can only occur at the dominance frontier of h; block s is in the dominance
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses.go

    			newSetCounts[ss] = struct{}{}
    		}
    	}
    
    	setCounts = []uint64{}
    	for setCount := range newSetCounts {
    		setCounts = append(setCounts, setCount)
    	}
    
    	// Not necessarily needed but it ensures to the readers
    	// eyes that we prefer a sorted setCount slice for the
    	// subsequent function to figure out the right common
    	// divisor, it avoids loops.
    	sort.Slice(setCounts, func(i, j int) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. src/strings/replace.go

    	// this node is not a complete key.
    	value string
    	// priority is the priority (higher is more important) of the trie node's
    	// key/value pair; keys are not necessarily matched shortest- or longest-
    	// first. Priority is positive if this node is a complete key, and zero
    	// otherwise. In the example above, positive/zero priorities are marked
    	// with a trailing "+" or "-".
    	priority int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/Invokable.java

            // Enclosed in a method, if it's not static, must need hidden this.
            return !Modifier.isStatic(enclosingMethod.getModifiers());
          } else {
            // Strictly, this doesn't necessarily indicate a hidden 'this' in the case of
            // static initializer. But there seems no way to tell in that case. :(
            // This may cause issues when an anonymous class is created inside a static initializer,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. internal/etag/etag.go

    //
    // An S3 ETag sometimes corresponds to the MD5 of
    // the S3 object content. However, when an object
    // is encrypted, compressed or uploaded using
    // the S3 multipart API then its ETag is not
    // necessarily the MD5 of the object content.
    //
    // For a more detailed description of S3 ETags
    // take a look at the package documentation.
    type ETag []byte
    
    // String returns the string representation of the ETag.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_cluster_util.cc

      GraphDef def;
      graph.ToGraphDef(&def);
    
      // Before serialization, sort each node's control inputs to achieve
      // determinism. Sorting control inputs could help (but not necessarily) create
      // a deterministic serialization and fingerprint. Other sources of
      // nondeterminism include unstable node ordering.
      SortControlInputs(&def);
    
      std::string s;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Having two tasks in the same build that do the same might sound like a problem to fix, but it is not necessarily something bad.
    For example, the Android plugin creates several tasks for each variant of the project; some of those tasks will potentially do the same thing.
    These tasks can safely reuse each other's outputs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top