Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for OpType (0.12 sec)

  1. cmd/object-api-datatypes_gen.go

    	o = append(o, 0xac, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x72)
    	o = msgp.AppendBool(o, z.DeleteMarker)
    	// string "OpType"
    	o = append(o, 0xa6, 0x4f, 0x70, 0x54, 0x79, 0x70, 0x65)
    	o, err = z.OpType.MarshalMsg(o)
    	if err != nil {
    		err = msgp.WrapError(err, "OpType")
    		return
    	}
    	// string "EventType"
    	o = append(o, 0xa9, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                            .setOpType(OpType.CREATE).execute().actionGet(fessConfig.getIndexIndexTimeout());
                } else {
                    // create or update
                    final IndexRequestBuilder builder = client.prepareIndex().setIndex(index).setId(id).setSource(new DocMap(source))
                            .setRefreshPolicy(RefreshPolicy.IMMEDIATE).setOpType(OpType.INDEX);
                    if (seqNo != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      builder.insert(new_result);
    }
    
    template <typename OpType>
    LogicalResult FindAndExcludeOp(func::FuncOp func,
                                   const StringAttr& replication_attr,
                                   llvm::SetVector<Operation*>& merged_set,
                                   OpType& found_op) {
      // Find the TPUReplicationMetadata or TPUCompilationResult ops which will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    				// d.Name "[" pname ...
    				// d.Name "[" pname ptype ...
    				// d.Name "[" pname ptype "," ...
    				d.TParamList = p.paramList(pname, ptype, _Rbrack, true) // ptype may be nil
    				d.Alias = p.gotAssign()
    				d.Type = p.typeOrNil()
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == token.COMMA); pname != nil && (ptype != nil || p.tok != token.RBRACK) {
    				// spec.Name "[" pname ...
    				// spec.Name "[" pname ptype ...
    				// spec.Name "[" pname ptype "," ...
    				p.parseGenericType(spec, lbrack, pname, ptype) // ptype may be nil
    			} else {
    				// spec.Name "[" pname "]" ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    				// type with TypeArgs results in an identical instance.
    				ptype := useMap[inst.Ident].Type()
    				lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
    				if lister == nil || lister.TypeParams().Len() == 0 {
    					t.Fatalf("info.Types[%v] = %v, want parameterized type", inst.Ident, ptype)
    				}
    				inst2, err := Instantiate(nil, ptype, targs, true)
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    				// type with TypeArgs results in an identical instance.
    				ptype := useMap[inst.Name].Type()
    				lister, _ := ptype.(interface{ TypeParams() *TypeParamList })
    				if lister == nil || lister.TypeParams().Len() == 0 {
    					t.Fatalf("info.Types[%v] = %v, want parameterized type", inst.Name, ptype)
    				}
    				inst2, err := Instantiate(nil, ptype, targs, true)
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			break
    		}
    		if st.str[0] == 'Q' {
    			// This is a requires clause.
    			break
    		}
    		ptype := st.demangleType(false)
    
    		if len(ret) == 0 && explicitObjectParameter {
    			ptype = &ExplicitObjectParameter{Base: ptype}
    		}
    
    		ret = append(ret, ptype)
    	}
    
    	// There should always be at least one type.  A function that
    	// takes no arguments will have a single parameter type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    		// constants to the parameter type, to avoid a type mismatch.
    		ptype := p.rewriteUnsafe(param.Go)
    
    		if !p.needsPointerCheck(f, param.Go, args[i]) || param.BadPointer || p.checkUnsafeStringData(args[i]) {
    			if ptype != param.Go {
    				needsUnsafe = true
    			}
    			fmt.Fprintf(&sb, "var _cgo%d %s = %s; ", i,
    				gofmt(ptype), gofmtPos(arg, origArg.Pos()))
    			continue
    		}
    
    		// Check for &a[i].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    // TODO/NICETOHAVE:
    //   - eliminate DW_CLS_ if not used
    //   - package info in compilation units
    //   - assign types to their packages
    //   - gdb uses c syntax, meaning clumsy quoting is needed for go identifiers. eg
    //     ptype struct '[]uint8' and qualifiers need to be quoted away
    //   - file:line info for variables
    //   - make strings a typedef so prettyprinters can see the underlying string type
    
    package ld
    
    import (
    	"cmd/internal/dwarf"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top