Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 9,026 for gives (0.07 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/CancellationSpec.groovy

            if (targetDist.toolingApiRetainsOriginalFailureOnCancel) {
                if (targetDist.toolingApiDoesNotAddCausesOnTaskCancel) {
                    // Verify the cause exception gives some context about the cancellation
                    // Some versions either do not included this, or provide a pointless wrapper, or include multiple 'build cancelled' failures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     * <p>
     * In general, we recommend generating resources into folders different than the regular resourcesDir and classesDirs.
     * Usually, it makes the build easier to understand and maintain. Also it gives some additional benefits
     * because other Gradle plugins can take advantage of the output dirs 'registered' in the SourceSet.output.
     * For example: Java plugin will use those dirs in calculating class paths and for jarring the content;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/topology.go

    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    // Cluster implementations can embed this struct to include common functionality.
    type Topology struct {
    	ClusterName             string
    	Network                 string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/magic.go

    //
    // The first thing to note is that for odd integers, exact division can be computed
    // by using the modular inverse with respect to the word size 2^n.
    //
    // Given c, compute m such that (c * m) mod 2^n == 1
    // Then if c divides x (x%c ==0), the quotient is given by q = x/c == x*m mod 2^n
    //
    // x can range from 0, c, 2c, 3c, ... ⎣(2^n - 1)/c⎦ * c the maximum multiple
    // Thus, x*m mod 2^n is 0, 1, 2, 3, ... ⎣(2^n - 1)/c⎦
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.td

    def TF_LayoutSensitiveInterface : OpInterface<"LayoutSensitiveInterface"> {
      let description = [{
        A layout sensitive operation is one that depends on a `data_format` string
        attribute, that gives a meaning to the data inside arguments and results.
    
        Currently supported data formats (layouts):
          - NHWC : channels last  [batch, height, width, channels]
          - NCHW : channels first [batch, channels, height, width]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 30 19:07:07 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     *  consisting entirely of entity characters of converted length 
     *  CUNIT_MAX_ENTITY_LEN.  Neither szSrc nor szDest may be NULL 
     *  (checked by assertion).<br /><br />
     *
     *  maxlen gives the maximum number of characters in the translated string.
     *  If szDest does not have enough room to hold the converted string, the
     *  return value will be zero and szDest will contain an empty string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/builder_flags.go

    	}
    	if o.Local != nil {
    		flagset.BoolVar(o.Local, "local", *o.Local, "If true, annotation will NOT contact api-server but run locally.")
    	}
    }
    
    // ToBuilder gives you back a resource finder to visit resources that are located
    func (o *ResourceBuilderFlags) ToBuilder(restClientGetter RESTClientGetter, resources []string) ResourceFinder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

        if (succeeded(layout)) {
          minor_to_major = layout.value();
        } else {
          /* If we're not running on a TPU node, we might not be able to
           * actually call the part of the TPU API that gives us layout.
           * This happens e.g. for unit tests. Below we just create a reasonable
           * layout.  We sort by dimension size, which makes the layout agree with
           * the "correct" TPU layout in surprisingly many cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8.go

    		// but we do it immediately before computing the next block,
    		// to allow a much smaller serialized state (just the seed plus offset).
    		// This gives a delayed benefit for the forward secrecy
    		// (you can reconstruct the recent past given a memory dump),
    		// which we deem acceptable in exchange for the reduced size.
    		s.seed[0] = s.buf[len(s.buf)-reseed+0]
    		s.seed[1] = s.buf[len(s.buf)-reseed+1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/os/env_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os_test
    
    import (
    	. "os"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    // testGetenv gives us a controlled set of variables for testing Expand.
    func testGetenv(s string) string {
    	switch s {
    	case "*":
    		return "all the args"
    	case "#":
    		return "NARGS"
    	case "$":
    		return "PID"
    	case "1":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top