Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for dottype (0.12 sec)

  1. src/html/template/escape_test.go

    			"a<b",
    		},
    		{
    			"HTML doctype not normalized",
    			"<!DOCTYPE html>Hello, World!",
    			"<!DOCTYPE html>Hello, World!",
    		},
    		{
    			"HTML doctype not case-insensitive",
    			"<!doCtYPE htMl>Hello, World!",
    			"<!doCtYPE htMl>Hello, World!",
    		},
    		{
    			"No doctype injection",
    			`<!{{"DOCTYPE"}}`,
    			"&lt;!DOCTYPE",
    		},
    		{
    			"Split HTML comment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                        logger.info("Created {}/{} mapping.", indexName, docType);
                    } else {
                        logger.warn("Failed to create {}/{} mapping.", indexName, docType);
                    }
    
                    final String dataPath = getResourcePath(indexConfigPath, fessConfig.getFesenType(), "/" + index + "/" + docType + ".bulk");
                    if (ResourceUtil.isExist(dataPath)) {
    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. src/encoding/xml/marshal_test.go

    	wg.Wait()
    }
    
    func TestIsValidDirective(t *testing.T) {
    	testOK := []string{
    		"<>",
    		"< < > >",
    		"<!DOCTYPE '<' '>' '>' <!--nothing-->>",
    		"<!DOCTYPE doc [ <!ELEMENT doc ANY> <!ELEMENT doc ANY> ]>",
    		"<!DOCTYPE doc [ <!ELEMENT doc \"ANY> '<' <!E\" LEMENT '>' doc ANY> ]>",
    		"<!DOCTYPE doc <!-- just>>>> a < comment --> [ <!ITEM anything> ] >",
    	}
    	testKO := []string{
    		"<",
    		">",
    		"<!--",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	reqSize := uint32(256)
    	for {
    		var dataType DEVPROPTYPE
    		buf := make([]byte, reqSize)
    		err = setupDiGetDeviceProperty(deviceInfoSet, deviceInfoData, propertyKey, &dataType, &buf[0], uint32(len(buf)), &reqSize, 0)
    		if err == ERROR_INSUFFICIENT_BUFFER {
    			continue
    		}
    		if err != nil {
    			return
    		}
    		switch dataType {
    		case DEVPROP_TYPE_STRING:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_test.cc

      def.add_input("input2");
      def.add_input("input3");
      def.add_input("input3");
      def.add_input("input3");
    
      AttrValue v0;
      v0.set_type(DataType::DT_INT32);
      v0.set_i(3);
      (*def.mutable_attr())["NumInput3"] = v0;
      AttrValue v1;
      v1.set_type(DataType::DT_FLOAT);
      (*def.mutable_attr())["SomeDataTypeAttr"] = v1;
    
      return CreateOpKernel(DeviceType(device_name), nullptr, nullptr, def, 1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_test.cc

      EXPECT_NE(attr_found, attr_values.cend());
      EXPECT_EQ(attr_found->second.list().type(0), tensorflow::DataType::DT_BOOL);
      EXPECT_EQ(attr_found->second.list().type(1), tensorflow::DataType::DT_FLOAT);
      EXPECT_EQ(attr_found->second.list().type(2), tensorflow::DataType::DT_INT32);
    
      TFE_TensorHandle* retvals[1] = {nullptr};
      int num_retvals = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	}
    
    	allowWatchList := isWatcher && isLister // watching on lists is allowed only for kinds that support both watch and list.
    	nameParam := ws.PathParameter("name", "name of the "+kind).DataType("string")
    	pathParam := ws.PathParameter("path", "path to the resource").DataType("string")
    
    	params := []*restful.Parameter{}
    	actions := []action{}
    
    	var resourceKind string
    	kindProvider, ok := storage.(rest.KindProvider)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    func (p *Package) recordTypedefs(dtype dwarf.Type, pos token.Pos) {
    	p.recordTypedefs1(dtype, pos, map[dwarf.Type]bool{})
    }
    
    func (p *Package) recordTypedefs1(dtype dwarf.Type, pos token.Pos, visited map[dwarf.Type]bool) {
    	if dtype == nil {
    		return
    	}
    	if visited[dtype] {
    		return
    	}
    	visited[dtype] = true
    	switch dt := dtype.(type) {
    	case *dwarf.TypedefType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

        private static final Type OBJECT_TYPE = Type.getType(Object.class);
        private static final Type STRING_TYPE = Type.getType(String.class);
        private static final Type CLASS_TYPE = Type.getType(Class.class);
        private static final Type CLOSURE_TYPE = Type.getType(Closure.class);
        private static final Type TYPE_CONVERTER_TYPE = Type.getType(TypeConverter.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

           FunctionDefHelper::Const("maxval", 20),
           {{"shape"},
            "RandomUniformInt",
            {"shape_shape:output:0", "minval:output:0", "maxval:output:0"},
            {{"Tout", DataType::DT_INT32}, {"T", DataType::DT_INT32}}}},
          /*ret_def=*/{{"out", "shape:output:0"}});
    
      func.mutable_signature()->set_is_stateful(true);
      *flib_def.add_function() = std::move(func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top