Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Result (0.21 sec)

  1. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	// result: y
    	for {
    		y := v_0
    		if v_2.Op != OpAMD64FlagLT_ULT {
    			break
    		}
    		v.copyOf(y)
    		return true
    	}
    	// match: (CMOVLEQ y _ (FlagLT_UGT))
    	// result: y
    	for {
    		y := v_0
    		if v_2.Op != OpAMD64FlagLT_UGT {
    			break
    		}
    		v.copyOf(y)
    		return true
    	}
    	// match: (CMOVLEQ x y (TESTQ s:(Select0 blsr:(BLSRQ _)) s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    		return true
    	}
    	// match: (ADDconst [c] y)
    	// cond: c < 0
    	// result: (SUBconst [-c] y)
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		y := v_0
    		if !(c < 0) {
    			break
    		}
    		v.reset(OpARM64SUBconst)
    		v.AuxInt = int64ToAuxInt(-c)
    		v.AddArg(y)
    		return true
    	}
    	// match: (ADDconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    			}
    		}
    		break
    	}
    	// match: (Add16 (Const16 [0]) x)
    	// result: x
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpConst16 || auxIntToInt16(v_0.AuxInt) != 0 {
    				continue
    			}
    			x := v_1
    			v.copyOf(x)
    			return true
    		}
    		break
    	}
    	// match: (Add16 x (Neg16 y))
    	// result: (Sub16 x y)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

            "properties": {
              "nodeName": {
                "description": "NodeName is the name of the node providing the necessary resources if the resources are local to a node.",
                "type": "string"
              },
              "results": {
                "description": "Results lists all allocated driver resources.",
                "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

    that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    endian orderings will give different results. A copy from input buffer to output
    buffer is made on BE machines when types are of different sizes in order to get
    the same casting results as on LE machines.
      }];
    
      let arguments = (ins
        TF_NumberTensor:$input
      );
    
      let results = (outs
        TF_NumberTensor:$output
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.testing.junit.result.Binary2JUnitXmlReportGenerator$1$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Binary2JUnitXmlReportGenerator.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                        In the context of policy attachment, the Ancestor is used to distinguish which
                        resource results in a distinct application of this policy. For example, if a policy
                        targets a Service, it may have a distinct result per attached Gateway.
    
    
                        Policies targeting the same resource may have different effects depending on the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  9. RELEASE.md

        large_constant]`) into 32-bit arithmetic in SASS.
    
        As a result, these versions of `ptxas` miscompile most XLA programs which
        use more than 4GB of temp memory. This results in garbage results and/or
        `CUDA_ERROR_ILLEGAL_ADDRESS` failures.
    
        A fix in CUDA 9.1.121 is expected in late February 2018. We do not expect a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    	expect := sets.NewString().Union(osSpecificFields).Union(osNeutralFields)
    
    	result := collectResourcePaths(t, expect, reflect.TypeOf(&core.PodSpec{}), nil)
    
    	if !expect.Equal(result) {
    		// expected fields missing from result
    		missing := expect.Difference(result)
    		// unexpected fields in result but not specified in expect
    		unexpected := result.Difference(expect)
    		if len(missing) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top