Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 271 for inss (0.04 sec)

  1. src/slices/iter_test.go

    		}
    	}
    }
    
    func TestSorted(t *testing.T) {
    	s := Sorted(Values(ints[:]))
    	if !IsSorted(s) {
    		t.Errorf("sorted %v", ints)
    		t.Errorf("   got %v", s)
    	}
    }
    
    func TestSortedFunc(t *testing.T) {
    	s := SortedFunc(Values(ints[:]), func(a, b int) int { return a - b })
    	if !IsSorted(s) {
    		t.Errorf("sorted %v", ints)
    		t.Errorf("   got %v", s)
    	}
    }
    
    func TestSortedStableFunc(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/go/types/context.go

    	assert(inst != nil)
    
    	ctxt.mu.Lock()
    	defer ctxt.mu.Unlock()
    
    	for _, e := range ctxt.typeMap[h] {
    		if inst == nil || Identical(inst, e.instance) {
    			return e.instance
    		}
    		if debug {
    			// Panic during development to surface any imperfections in our hash.
    			panic(fmt.Sprintf("%s and %s are not identical", inst, e.instance))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.h

    namespace tensorflow {
    
    // Extracts the attributes of a MLIR operation and populates the converted
    // attributes in a proto map<string, AttrValue>.
    Status GetAttrValuesFromOperation(
        mlir::Operation* inst, llvm::StringRef name,
        const tensorflow::OpRegistrationData* op_reg_data,
        bool ignore_unregistered_attrs, AttrValueMap* attributes);
    
    // Converts a MLIR operation to TensorFlow NodeDef with given node name. This
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheVersion.java

            for (int i = 0; i < minLength; i++) {
                int result = Ints.compare(this.components[i], that.components[i]);
                if (result != 0) {
                    return result;
                }
            }
            return Ints.compare(this.components.length, that.components.length);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    	return nil
    }
    
    // disassemble parses the output of the objdump command and returns
    // the assembly instructions in a slice.
    func disassemble(asm []byte) ([]plugin.Inst, error) {
    	buf := bytes.NewBuffer(asm)
    	function, file, line := "", "", 0
    	var assembly []plugin.Inst
    	for {
    		input, err := buf.ReadString('\n')
    		if err != nil {
    			if err != io.EOF {
    				return nil, err
    			}
    			if input == "" {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. test/blank.go

    	if b != 4 {
    		panic(b)
    	}
    	_ = i()
    	if call != "ffgfgi" {
    		panic(call)
    	}
    	if c4 != 4 {
    		panic(c4)
    	}
    
    	out := ""
    	for _, s := range ints {
    		out += s
    	}
    	if out != "123" {
    		panic(out)
    	}
    
    	sum := 0
    	for s := range ints {
    		sum += s
    	}
    	if sum != 3 {
    		panic(sum)
    	}
    
    	// go.tools/ssa/interp cannot support unsafe.Pointer.
    	if os.Getenv("GOSSAINTERP") == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 08 18:36:20 UTC 2013
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    				continue Search
    			}
    			args[j] = arg
    		}
    
    		decoderCover[i] = true
    
    		inst = Inst{
    			Op:   op,
    			Args: args,
    			Enc:  x,
    			Len:  4,
    		}
    		priority = f.priority
    		continue Search
    	}
    	if inst.Op != 0 {
    		return inst, nil
    	}
    	return Inst{}, errUnknown
    }
    
    // An instArg describes the encoding of a single argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      }
      auto& module = module_or.value();
      std::srand(0);
      for (auto fn : module->getOps<mlir::func::FuncOp>()) {
        for (auto& bb : fn) {
          for (auto& inst : bb) {
            auto attr_id = mlir::StringAttr::get(context, "value");
            if (auto attr = inst.getAttrOfType<mlir::ElementsAttr>(attr_id)) {
              mlir::Attribute rand_val;
              mlir::Type element_type = attr.getShapedType().getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

              notValues: ["not-presenter", "not-presenter-prefix-*", "*-not-suffix-presenter", "*"]
            - key: "request.auth.claims[iss]"
              values: ["iss", "iss-prefix-*", "*-suffix-iss", "*"]
              notValues: ["not-iss", "not-iss-prefix-*", "*-not-suffix-iss", "*"]
            - key: "request.auth.claims[nested1][nested2]"
              values: ["nested", "nested-prefix-*", "*-suffix-nested", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

    // Converts an MLIR operation to TensorFlow NodeDef with given node name. This
    // name should be unique to the graph it is being inserted into.
    absl::StatusOr<std::unique_ptr<NodeDef>> GetOperationNodeDef(
        mlir::Operation* inst, llvm::StringRef name);
    
    // Converts MLIR attributes with values to their tensorflow equivalent.
    // "name" and "device" attributes are ignored by default. Use attrs_to_ignore to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top