Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for inss (0.04 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    	wantNoneReg(ctxt, ins, "rd", ins.rd)
    	wantIntReg(ctxt, ins, "rs1", ins.rs1)
    	wantIntReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateU(ctxt *obj.Link, ins *instruction) {
    	wantImmI(ctxt, ins, ins.imm, 20)
    	wantIntReg(ctxt, ins, "rd", ins.rd)
    	wantNoneReg(ctxt, ins, "rs1", ins.rs1)
    	wantNoneReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    			}
    
    			// Pairwise compare with the expected instances.
    			for ii, inst := range instances {
    				var targs []Type
    				for i := 0; i < inst.Inst.TypeArgs.Len(); i++ {
    					targs = append(targs, inst.Inst.TypeArgs.At(i))
    				}
    				typ := inst.Inst.Type
    
    				testInst := test.instances[ii]
    				if got := inst.Ident.Name; got != testInst.name {
    					t.Fatalf("got name %s, want %s", got, testInst.name)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    			}
    
    			// Pairwise compare with the expected instances.
    			for ii, inst := range instances {
    				var targs []Type
    				for i := 0; i < inst.Inst.TypeArgs.Len(); i++ {
    					targs = append(targs, inst.Inst.TypeArgs.At(i))
    				}
    				typ := inst.Inst.Type
    
    				testInst := test.instances[ii]
    				if got := inst.Name.Value; got != testInst.name {
    					t.Fatalf("got name %s, want %s", got, testInst.name)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Constant tensor op";
    
      let arguments = (ins
        ElementsAttr:$value
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value)>,
        OpBuilder<(ins "Type":$type, "Attribute":$value)>,
      ];
    
      let hasFolder = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    			}
    			arg := decodeArg(aop, x)
    			if arg == nil { // Cannot decode argument
    				continue Search
    			}
    			args[j] = arg
    		}
    		decoderCover[i] = true
    		inst = Inst{
    			Op:   f.op,
    			Args: args,
    			Enc:  x,
    		}
    		return inst, nil
    	}
    	return Inst{}, errUnknown
    }
    
    // decodeArg decodes the arg described by aop from the instruction bits x.
    // It returns nil if x cannot be decoded according to aop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: %[[INDS:.*]] = "tf.Const"() <{value = dense<[2, 1]> : tensor<2xi32>}> : () -> tensor<2xi32>
      %indices = "tf.Const"() {value = dense<[2, 1]> : tensor<2xi32>} : () -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            int ins = ICONST_0;
            if (long.class == primitiveType) {
                ins = LCONST_0;
            } else if (double.class == primitiveType) {
                ins = DCONST_0;
            } else if (float.class == primitiveType) {
                ins = FCONST_0;
            }
            methodVisitor.visitInsn(ins);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    	testCases := []struct {
    		inRSs     []*apps.ReplicaSet
    		pod       *v1.Pod
    		outRSName string
    	}{
    		// pods without labels don't match any ReplicaSets
    		{
    			inRSs: []*apps.ReplicaSet{
    				{ObjectMeta: metav1.ObjectMeta{Name: "basic"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    						K8sAttributes: K8sAttributes{ExternalName: e.ExternalName},
    					},
    					Hostname: e.Name,
    				}
    			})
    			resolveServiceAliases(inps, nil)
    			out := slices.Map(inps, func(e *Service) service {
    				return service{
    					Name: e.Hostname,
    					Aliases: slices.Map(e.Attributes.Aliases, func(e NamespacedHostname) host.Name {
    						return e.Hostname
    					}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top